function fDisplayHelpFile()
{

	var sDocTitleTag = document.title;
	var sHelpFile = "/cdm/help/secure/hh_start.htm?";
	 
	switch (sDocTitleTag)
	{
		case "UPRR-Price Inquiry:Pricing:New Rate Search" :     
			sHelpFile += "newratesearch.htm"
			break
		case "UPRR-Price Inquiry:Pricing:Service Level" :      
	         	sHelpFile += "chooseservice.htm"
	         	break
		case "UPRR-Price Inquiry:Pricing:Choose Equipment" :      
	         	sHelpFile += "chooseequipment.htm"
	         	break
		case "UPRR-Price Inquiry:Pricing:Your Rate" :      
	         	sHelpFile += "yourrate.htm"
	         	break
		case "UPRR-Price Inquiry:Pricing:Price Documents" :      
	         	sHelpFile += "newdocumentsearch.htm"
	         	break
		case "UPRR-Price Inquiry:Pricing:Price Document Results" :      
	         	sHelpFile += "documentsearchresults.htm"
	         	break
		default :
			sHelpFile = "/cdm/help/secure/hh_start.htm"
	}

	fPopWindow(sHelpFile,'help');
	
}


var popup;

function fPopWindow(URL,sType){
//  PopContextualHelp
	
	if (popup != null && !popup.closed) 
	{ 
		popup.close();
	}
	popup=window.open(URL,"helpwind","WIDTH=750,HEIGHT=500,resizable=1,scrollbars=1,status=1,toolbar=1,status=1,location=0,menubar=1");
}
