//Function for the Pop-Up help
version4 = false;
if (top.Help_Mode == true)	//Only run this function if the Help switch is set
{
if(navigator.appVersion.charAt(0) >= "4") version4 = true; //This only works on 4 and greater browsers

function displayPopup(url,name,height,width,evnt)
{
	var properties = "toolbar=0,location=0,height="+height
	properties = properties+",width="+width
	if(evnt != null)
  {
 		if(navigator.appName == "Microsoft Internet Explorer")
			{
			properties = properties+",left="+(evnt.screenX + 10)
			properties = properties+",top="+(evnt.screenY + 10)
			}
	else 
	{ // Navigator coordinates must be adjusted for scrolling
	properties = properties+",left="+(evnt.screenX - pageXOffset + 10)
	properties = properties+",top="+(evnt.screenY - pageYOffset + 10)
	}
  }
popupHandle = open(url,name,properties)
}

function closePopup()
{
if(popupHandle != null && !popupHandle.closed) popupHandle.close();
}

}
