//Global Variables--------------------------------------------------->
	var myWidth = 0;
	var myHeight = 0;
	
	var IE = document.all?true:false
	if (!IE) document.captureEvents(Event.MOUSEMOVE)
	document.onmousemove = getMouseXY;
		
	var posX = 0;
	var posY = 0;
	
	var loadState=0;
	
	var showTtp=false;
//Global Variables---------------------------------------------------|

	if( typeof( window.innerWidth ) == 'number' )
	{
		//Non-IE
		myWidth = window.innerWidth;
		myHeight = window.innerHeight;
	} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
		//IE 6+ in 'standards compliant mode'
		myWidth = document.documentElement.clientWidth;
		myHeight = document.documentElement.clientHeight;
	} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
		//IE 4 compatible
		myWidth = document.body.clientWidth;
		myHeight = document.body.clientHeight;
	}

function getMouseXY(e) 
	{
		if (IE) 
		{ 
			posX = event.clientX +(document.documentElement.scrollLeft ? document.documentElement.scrollLeft :document.body.scrollLeft);
			posY = event.clientY +(document.documentElement.scrollTop ? document.documentElement.scrollTop :document.body.scrollTop);
		} 
		else 
		{ 
			posX = e.pageX;
			posY = e.pageY;
		}  
		if(showTtp)
		{
				mttp_div=document.getElementById('ttp_div');
				
				mttp_div.style.left=(posX-55)+"px";
				
				mttp_div.style.top='235px';//(posY+22)+"px";	
		}
		return true;
	}




function showToolTip(str)
{
	mttp_div=document.getElementById('ttp_div');	
	
	mttp_div.innerHTML=str;
	mttp_div.style.display="block";
	showTtp=true;
}

function hideToolTip()
{
	mttp_div=document.getElementById('ttp_div');
	showTtp=false;
	mttp_div.style.display="none";
}









function adjustOnLoad()
{

			
}