// JavaScript Document

// Navigation rollover effect
function cellOver(cell){
	cell.style.backgroundColor='#787878';
	cell.style.color='#FFFFFF';
	cell.style.color='#FFFFFF';
	cell.style.cursor ='hand';
}
function cellOut(cell){
	cell.style.backgroundColor='#FFFFFF';
	cell.style.color='#787878';
	cell.style.color='#787878';
}


function loadURL(url){
	document.location.href=url;
}


function newWindow(url){
	window.open(url);
}

function wrongun(){
		alert('Sorry the password you entered is incorrect. Please try again');
}