function BlinkOn(IDspot)
{
	if (document.getElementById(enlpref + IDspot))
		document.getElementById(enlpref + IDspot).style.display = 'block';
}
function BlinkOff(IDspot)
{
	if (document.getElementById(enlpref + IDspot))
		document.getElementById(enlpref + IDspot).style.display = 'none';
}
function HideEnlargementPrompt()
{
	if (document.getElementById('prompt_enlarge'))
		document.getElementById('prompt_enlarge').style.display='none';
}
function ShowEnlargementPrompt()
{
	if (document.getElementById('prompt_enlarge'))
		document.getElementById('prompt_enlarge').style.display='block';
}
function HideGoogeHelp()
{
	if (document.getElementById('google_help'))
		document.getElementById('google_help').style.display='none';
}
function ShowGoogeHelp()
{
	if (!googlehelp && document.getElementById('google_help'))
		document.getElementById('google_help').style.display='block';
	googlehelp = 1;
}
function OverItem(id)
{
    var prt = document.getElementById(id);
    if(prt){
  	  	prt.className = "lineHiLite";
  	}
	
}
function OutItem(id)
{
    var prt = document.getElementById(id);
    if(prt){
  	  	prt.className = "lineRegular";
  	}
	
}

function TogglePrintable()
{
    var prt = document.getElementById('PrintTable');
    if(prt){
    	PrintVisEnabled = 1 - PrintVisEnabled;
  	  	prt.style.display = VisStatus[PrintVisEnabled];
 	}
}

function HidePrintable()
{
    var prt = document.getElementById('PrintTable');
    if(prt){
  	  prt.style.display = "none";
  	  PrintVisEnabled = 0;
  	}
}

function ToolTip(tip)
{
	window.status=tip;
}
function tooltipoff()
{
 var tiptable = document.getElementById("tip");
 if (tiptable)
 	tiptable.style.visibility ="hidden";
}
function tooltipon(event, tip)
{
 var tiptable = document.getElementById("tip");
 var tiptext = document.getElementById("tiptext");
 if (tiptable && tiptext){
  	tiptable.style.left = event.clientX + 10;
 	tiptable.style.top = event.clientY - 5;
 		tiptable.style.zIndex = 800;
		tiptable.style.visibility ="visible";
 		tiptext.innerHTML= "<font face='Arial' size='2'>" + tip + "</font>";
 }
}
<!-- 
 --><!-- 
 -->
