function ChangeBGColor(objTD, objIMG)
{
	objTD.style.cursor = "hand";
	objTD.lastChild.style.background = "#3B9ACF";
	objTD.style.background = "#3B9ACF";
	if(document.getElementById(objIMG) != null)
	{
		document.getElementById(objIMG).src = "images/arw_over.jpg";
	}
}

function RestoreColor(objTD, objIMG)
{
	objTD.lastChild.style.background = "#5AA7D7";
	objTD.style.background = "#5AA7D7";
	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')
}

function showHideCategory(Img, Pos)
{  
	if(document.getElementById("divParent" + Pos).style.display == "none")
	{
		document.getElementById(Img).src = "images/big_arrow.gif";
		document.getElementById("divParent" + Pos).style.display = "block";
	}
	else
	{
		document.getElementById(Img).src = "images/big_arrow2.gif";
		document.getElementById("divParent" + Pos).style.display = "none";
	}
}
function showHideCategoryEN(Img, Pos)
{  
	if(document.getElementById("divParent" + Pos).style.display == "none")
	{
		document.getElementById(Img).src = "images/en_big_arrow.gif";
		document.getElementById("divParent" + Pos).style.display = "block";
	}
	else
	{
		document.getElementById(Img).src = "images/big_arrow2.gif";
		document.getElementById("divParent" + Pos).style.display = "none";
	}
}