<!--
	function Netscape2()
    {
            return((self.navigator.appName=='Netscape')&&(parseInt(self.navigator.appVersion,10)<3));
    }
        
    function Explorer2()
    {
            return((self.navigator.appName=='Explorer')&&(parseInt(self.navigator.appVersion,10)<3));
    }
	
	function sendOnlyPopup(url, Name, width, height)
	{
		if ((Netscape2()) || (Explorer2())) return;
	    popWindow_=window.open(url, Name, "toolbar=no,status=yes,scrollbars=yes,alwaysLowered=0,alwaysRaised=1,directories=no,resizable=yes,resize=yes,menubar=no,width="+width+",height="+height);
	    popWindow_.focus();
	}
	
	function sendLink(url, Name, width, height)
	{
		if ((Netscape2()) || (Explorer2())) return;
	    popWindow_=window.open(url, Name, "location=yes, toolbar=yes, personalbar=yes, statusbar=yes, status=yes, scrollbars=yes,alwaysLowered=0,alwaysRaised=1,directories=yes,resizable=yes,resize=yes,menubar=yes,width="+width+",height="+height);
	    popWindow_.focus();
	}
	
	function sendExternalLink(localPath, pageid, Name, width, height)
	{
	if ((Netscape2()) || (Explorer2())) return;
		var currentPage = document.location.pathname;
		if (currentPage == '/')
			currentPage = '/home.jhtml';
		var iPos = currentPage.indexOf(';');
		if (iPos > 0)
			currentPage = currentPage.substring(0, iPos);
		localPath = localPath + "?pageid=" + pageid + "&prevPage=" + currentPage;
	    popWindow_=window.open(localPath, Name, "location=yes, left=200, top=100, toolbar=yes, personalbar=yes, statusbar=yes, status=yes, scrollbars=yes,alwaysLowered=0,alwaysRaised=1,directories=yes,resizable=yes,resize=yes,menubar=yes,width="+width+",height="+height);
	    popWindow_.focus(); 
	}	
	
	function sendExternalLinkNoToolbar(localPath, pageid, Name, width, height)
	{
		if ((Netscape2()) || (Explorer2())) return;
		var currentPage = document.location.pathname;
		if (currentPage == '/')
			currentPage = '/home.jhtml';
		var iPos = currentPage.indexOf(';');
		if (iPos > 0)
			currentPage = currentPage.substring(0, iPos);
		localPath = localPath + "?pageid=" + pageid + "&prevPage=" + currentPage;
	    popWindow_=window.open(localPath, Name, "location=0, left=200, top=100, toolbar=no, personalbar=no, statusbar=no, status=no, scrollbars=no,alwaysLowered=0,alwaysRaised=1,directories=no,resizable=yes,resize=yes,menubar=yes,width="+width+",height="+height);
	    popWindow_.focus(); 
	}
//-->


