<!--

var gDivActive = null; 

function ShowHelpPopup(psName, psURL, piLeft, piTop, piWidth, piHeight)
{
  var helpwindow;

  helpwindow = window.open(psURL, psName, "top=" + piTop + ",left=" + piLeft + ",width=" + piWidth + ",height=" + piHeight );
  helpwindow.focus();
}



function showhelp(pIn)
{


  if (navigator.appName == "Netscape")
  {
	//alert(gDivActive);
	ShowHelpPopup("Quinnet Details...", "details.htm#" + pIn, window.screen.availWidth - 320, 220, 200, 240)
  }
  else
  {

		var oHelp = eval(pIn + 'help');

		if (gDivActive != null)
		{
                  if (gDivActive.id != oHelp.id)
		  {
		    gDivActive.style.display = 'none';
		  }
		}


		if (oHelp.style.display == 'none' || oHelp.style.display == '')
		{

		  oHelp.style.pixelLeft = 305;
		  oHelp.style.display = 'inline';
		  gDivActive = oHelp;
		}
		else
		{

		  oHelp.style.display = 'none';
		  gDivActive = null;
		}
  }
  return false;
}


function placeMaster() {
  if (window.innerWidth != null)
	return window.innerWidth;
	if (document.body.clientWidth != null)
        {
          //alert(document.body.clientWidth + ' :  ' + document.body.clientHeight);
	  if(document.body.clientWidth >= 595)
            	{
	      		QMaster.style.pixelLeft = (document.body.clientWidth - 595)/2;
            	}
          if(document.body.clientHeight >= 750)
		{
          		QMaster.style.pixelTop = (document.body.clientHeight - 750)/2;
		}
        }

  return(null);
}



function getTopPos(el) {
	if (ie5) {
		if (el.currentStyle.top == "auto")
			return 0;
		else
			return parseInt(el.currentStyle.top);
	}
	else {
		return el.style.pixelTop;
	}
}






//-->