
 function mOvr(src,clrOver)
	{
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
	}
	function nOvr(src,clrOver)
	{
		src.style.cursor = 'hand';
		src.bgColor = clrOver;
	}
	function mOut(src,clrIn)
	{
		src.style.cursor = 'default';
		src.bgColor = clrIn;
	}
	function mClk(src)
	{
		src.children.tags('A')[0].click();
	}
	function mStatus(Str)
	{
		window.status = Str;
		return true;
	}
