document.strBgColor = "#5593A2";
document.strBgColorOff = "#337281";

function navBgSwapOn(strTdOver)
	{
	oTdOver = document.getElementById(strTdOver);
	
	if(oTdOver.className != "selected")
		{
		oTdOver.style.backgroundColor = document.strBgColor;
		//oTdOver.style.cursor = "pointer";
		oTdOver.style.cursor = "hand";
		}
	}

function navBgSwapOff(strTdOver){
	oTdOver = document.getElementById(strTdOver);
	
	if(oTdOver.className != "selected"){
		oTdOver.style.backgroundColor = document.strBgColorOff;
		}

}


function handleUrl(strUrl){

	window.location = strUrl;
	}
	
leftspace=(screen.width/2);
topspace=(screen.height/2);

function popUpWin(url, width, height, name){
window.open(url,name,"width="+width+",height="+height+",top="+(topspace-(height/2))+",left="+(leftspace-(width/2))+",toolbar=0,resizable=0,scrollbars=1,location=0,status=1")
}	
	