//This functions is used to open another window using image map.
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus){
		win.window.focus();
	}
}

// This function is used to open or cancel the Google Apps

function goGoogle() {
	var answer = confirm("Brent Mail Google Apps\n\nInstructions:\n1.) Use your Brent School Username (example: jsmith) for the username field.\n2.) Type the text \"brentschool\", without the quotation marks, for the password field.\n\nClick on OK to proceed or Cancel to go back to Brent Website.");
	if (answer == true) {
		NewWindow("https://www.google.com/a/brent.edu.ph/ServiceLogin?service=mail&passive=true&rm=false&continue=https%3A%2F%2Fmail.google.com%2Fa%2Fbrent.edu.ph%2F&bsv=zpwhtygjntrz&ss=1&ltmpl=default&ltmplcache=2&hl=en","googleApps",800,600,1);
	}
}