function ChangeBGColor(objTD, objIMG)
{
	try
	{
		objTD.className += "_over";
/*
		objTD.style.cursor = "hand";
		objTD.lastChild.style.background = "#3B9ACF";
		objTD.style.background = "#d90004";
		if(document.getElementById(objIMG) != null)
		{
			document.getElementById(objIMG).src = "images/aro_over.gif";
		}
*/
	}
	catch(ex)
	{
	}
}

function RestoreColor(objTD, objIMG)
{
	try
	{
		objTD.className = objTD.className.substring(0, objTD.className.length - 5);
/*
		objTD.lastChild.style.background = "#970000";
		objTD.style.background = "#970000";
		if(objTD.className == "submenu_topitem_img")
		{
			alert(objTD.className);
			document.getElementByID("td" + objIMG).innerHTML = "<img src='images/aro_over.gif'>"
			//objTD.style.backgroundImage.src = "images/aro_over.gif";
		}
		if(document.getElementById(objIMG) != null)
		{
			document.getElementById(objIMG).src = "images/aro_normal.gif";
		}
*/
	}
	catch(ex)
	{
	}
}

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')
}