var ctlTDHighlight = null;
function MenuMouseOver(id)
{
	document.getElementById(id).style.textTransform = "uppercase";	
	document.getElementById(id).style.color = "green";	
}

function MenuMouseOut(id)
{
	document.getElementById(id).style.textTransform = "none";	
	document.getElementById(id).style.color = "";	
}

function LoadPage(url)
{
	window.document.location.href = url;
}

function ChangeMenuImageOver(id)
{
	document.getElementById(id).src = "../common/images/buttons/" + id + "_2.jpg";	
}

function ChangeMenuImageOut(id)
{
	document.getElementById(id).src = "../common/images/buttons/" + id + "_1.jpg";	
}

function fn_mouseout(ctlTD){
	if(ctlTDHighlight != ctlTD){
		ctlTD.className = "menuitem";
	}
			
}
function fn_mouseover(ctlTD,lclassName){
	if(ctlTDHighlight != ctlTD){
		ctlTD.className = lclassName;	
	}
	
}
function fn_onClick(ctlTD, lclassName){
	if(ctlTDHighlight){
		ctlTDHighlight.className = "menuitem";
		}
	ctlTDHighlight = ctlTD;
	ctlTDHighlight.className = lclassName;
	
}
function fn_mouseoutWeb(ctlTD){
	if(ctlTDHighlight != ctlTD){
		ctlTD.className = "menuitemWebdirect";
	}
			
}

