function menuOpener(what){
	// is the menu item currently closed
	if (what.style.display=='none'){
		// yes so let's open it up
	what.style.display='';
	} else{
		// the menu item is already open so let's close it up
		what.style.display='none'
	}
}
// Open Forgotten Password
function forgottenPassword(URL) {
	var winX;
	var winY;
	if(typeof(screen) != "undefined"){
		winX = (screen.width/2) - 150;
		winY = (screen.height/2) - 73;
	}
	window.open(URL,"mainWindow","scrollbars=no,status=no,toolbar=no,width=300,height=145,resizable=no,screenX="+winX+",screenY="+winY+",top="+winY+",left="+winX);
}

