//	BPTNavigation.js
//	Version 1.0.0

/// IMPORTANT !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//	BFJ September 2004 :- Do not modify this file.  This file may change at any time in future releases.
//	Any changes you make to this file will not be supported in any forthcomming releases
//////////////////////////////////////////////////////////////////////////////////////////////////

	var pressed;
	
	function arrowOver(theId) 
	{
	
		var oElement = document.getElementById( "TableRow" + theId);
		oElement.style.cursor = "hand";

		var oElement2 = document.getElementById("ImgItem" + theId);
		oElement2.style.visibility = "visible";
		

		pressed = "";
	}

	function arrowOut(theId) 
	{
		var oElement2 = document.getElementById("ImgItem" + theId);
		oElement2.style.visibility = "hidden";

		pressed = "";
	}
	
	function mdown(theId) 
	{
		pressed = theId;
	}
	
	function mup(theId, navigatepage) 
	{
		if ( pressed == theId)
		{	
			if (navigatepage.search(/http/i) != -1) {
					var newWindow = window.open( navigatepage );
					newWindow.focus();
			} else {
				window.top.location = navigatepage
			}
		}
	}
	
	function ToggleDisplay( element)
	{
	    var oElement = window.document.getElementById (element);
	    // window.document.all.item(element,0);

		if ( oElement.style.display == "none")
		{
			oElement.style.display = "inline"
		}
		else
		{
			oElement.style.display = "none"
		}	
	}	
