function ChangeBGColor(objTD, objIMG)
{ //alert(navigator.appName)
	objTD.style.cursor = "pointer";
	if (navigator.appName=="Microsoft Internet Explorer")
	{
	objTD.lastChild.style.background = "#ffffff";
	objTD.style.background = "#ffffff";
	}
	
	//if(document.getElementById(objIMG) != null)
	//{
//		document.getElementById(objIMG).src = "images/arw_over.jpg";
//	}
}

function RestoreColor(objTD, objIMG)
{ //alert(navigator.appName)
	if(navigator.appName=="Microsoft Internet Explorer")
	{
	objTD.lastChild.style.background = "#ffffff";
	objTD.style.background = "#ffffff";
	}
	
	//if(document.getElementById(objIMG) != null)
	//{
	//	document.getElementById(objIMG).src = "images/arw_normal.jpg";
	//}
}

function hideMenu(tdID)
{
	document.getElementById(tdID).style.display='none';
}

function showMenu(tdID)
{
	document.getElementById(tdID).style.display='block';
}

function OpenWindow(strFileName, intWidth, intHeight)
{
	window.open(strFileName, '','width=' + intWidth + ', height=' + intHeight + ', scrollbars=no')
}