// <!--
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Declare global variables
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
var ns6 = document.getElementById&&!document.all

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Changes menu background color
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function menuButton(idButton,idLink,intColor){
	if(intColor == '1'){
		// onMouseOver
		curmenuID=ns6? document.getElementById(idButton).bgColor="dddddd" : eval(idButton).bgColor="dddddd"
		curmenuID=ns6? document.getElementById(idLink).style.color="006699" : eval(idLink).style.color="006699"
	} else {
		// onMouseOut
		curmenuID=ns6? document.getElementById(idButton).bgColor="006699" : eval(idButton).bgColor="006699"
		curmenuID=ns6? document.getElementById(idLink).style.color="dddddd" : eval(idLink).style.color="dddddd"
	}
}



//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Changes the Page Status
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function changeStatus(strStatus){
	window.status = strStatus
}

//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Window Popper
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function openWindow(url) {
	popupWin = window.open(url, 'openWin', "width=772, height=540, scrollbars=yes,resizable=yes");
	popupWin.focus;
}
//-->
