function popUp(page)
	{
		var increment;
		var windowName;
		increment = 0;
		windowName = "popUp" + increment;
		windowName = window.open(page,windowName, "width=463,height=353, menubar=no, status=no, ");
		var myHeight;
		var myWidth;
		myHeight = screen.availHeight - 385;
		myWidth = screen.availWidth - 475;
		//popUp.moveTo(160,200);
		if (windowName && windowName.open) windowName.moveTo(myWidth,myHeight);
		setTimeout(windowName.close, 100000);
	}

function toggleMenuNEW(theDivIn){
//alert(document.getElementById(theDivIn).style.color);
//alert(toggle);
if (document.getElementById(theDivIn).style.backgroundColor == '#FFFFFF'){
	document.getElementById(theDivIn).style.backgroundColor = '#339966';
}else{
	document.getElementById(theDivIn).style.backgroundColor = '#FFFFFF';
} 
}

var toggle=0;
function toggleMenu(theDivIn){
//alert(document.getElementById(theDivIn).style.color);
//alert(toggle);
var link = theDivIn + "Link";
if (toggle==0){
	document.getElementById(theDivIn).style.color = '#FFFFFF';
	document.getElementById(theDivIn).style.backgroundColor = '#339966';
	document.getElementById(link).style.color = '#FFFFFF';
	toggle=1;
}else{
	document.getElementById(theDivIn).style.color = '#707070';
	document.getElementById(theDivIn).style.backgroundColor = '#FFFFFF';
//	document.getElementById(link).style.color = '#707070';
	document.getElementById(link).style.color = '#000000';
	toggle=0;
} 
}
