function ChangeBGColor(objTD)
{
		document.getElementById('a' + objTD).style.color='#0A8BA3';
}

function ChangeBGColor2(objTD)
{
		document.getElementById(objTD).style.color='#0A8BA3';
}

function RestoreColor(objTD, objIMG)
{
	objTD.className = "Left_Menu";
	
	//objTD.style.background = "#738AAC" ";
	//objTD.lastChild.style.background = "#738AAC" ";
	//objTD.style.backgroundImage = "url(Images/categBG02.gif)";
	//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)
{

if(document.getElementById(tdID).style.display='none')
	{
		document.getElementById(tdID).style.display='block'
	}
		
}

function OpenWindow(strFileName, intWidth, intHeight)
{
	window.open(strFileName, '','width=' + intWidth + ', height=' + intHeight + ', scrollbars=no')
}
