function BSSCPopupDEF(strURL, Pwidth, Pheight)
{
	if (HasExtJs())	{ 
		_BSSCPopup(strURL, Pwidth, Pheight);
	}else{
		//Create a temporary window first to ensure the real popup comes up on top
		var wndTemp = null;
		if (!s_bNS3) {
			wndTemp = window.open("", "temp", "titlebar=no, toolbar=no,status=no,location=no,menubar=no,resizable=no,scrollbars=no, height=3, width=4");
		}
		// Create the real popup window
		var wndPopup = window.open(strURL, "BSSCPopup", "titlebar=no, toolbar=no, status=no, location=no, menubar=no, resizable=no, scrollbars=no, height=Pheight, width=Pwidth" );
		// Close the temporary
		if (!s_bNS3) {
			wndTemp.close();
		} else {
			wndPopup.focus();
		}
	}
}


var NS = (navigator.appName == "Netscape") ? 1 : 0;
if (NS) document.captureEvents(Event.DBLCLICK);
document.ondblclick = ludict;

var newwin;
function ludict() {
if (NS) {
lutxt = document.getSelection();
openDictWin(lutxt);
}
else {
lutxt = document.selection.createRange();
if(document.selection.type == 'Text' && lutxt.text != '') {
document.selection.empty();
openDictWin(lutxt.text);
      }
   }
}

function openDictWin(text) {
  if (text > '')   {
   if (text != ' ')   {
newwin = window.open('http://hivjournal.tripod.com/cgi-bin/definition-popup.cgi?page=marketing/def-template.htm&term='+text, 'dictionary', 'width=310, height=310,  resizable=no, menubar=no, toolbar=no, scrollbars=yes, scroll=no' );
setTimeout('newwin.focus()', 100);
    }
  }
}

function openMovieProviders(text) {
  if (text > '')   {
   if (text != ' ')   {
newwin = window.open('http://hivjournal.tripod.com/cgi-bin/definition-popup.cgi?page=marketing/movie.htm&term='+text, 'dictionary', 'width=310, height=310,  resizable=no, menubar=no, toolbar=no, scrollbars=yes, scroll=no' );
setTimeout('newwin.focus()', 100);
    }
  }
}

function openBookProviders(text, type) {
  if (text > '')   {
   if (text != ' ')   {
newwin = window.open('http://hivjournal.tripod.com/cgi-bin/definition-popup.cgi?page=marketing/book_'+type+'.htm&term='+text, 'dictionary', 'width=400, height=350,  resizable=no, menubar=no, toolbar=no, scrollbars=yes, scroll=no' );
setTimeout('newwin.focus()', 100);
    }
  }
}