<!-- Begin
//open new window with certain parameters
function OpenWindow(url, name, properties) {
	switch (properties) {
		case 'weather': //bbc weather window
			windowprops = "width=772,height=425,top=100,left=125,scrollbars=0,menbars=0,location=0,statusbar=0,resizable=0";
			break;
		case 'password':
			windowprops = "width=175,height=120,top=200,left=200,scrollbars=0,menbars=0,location=0,statusbar=0,resizable=0";
			break;
		default:
			windowprops = "";	
	}
	window.open(url, name, windowprops);
}

function OpenPasswordWindow() {
	url = "http://www.gla.ac.uk/clubs/Cricket/ground_form_password.html";
	name = "";	
	
	OpenWindow(url, name, 'password');
}

function OpenWeatherWindow() {
	url = "http://www.bbc.co.uk/weather/5day.shtml?world=6";
	name = "";	
	
	OpenWindow(url, name, 'weather');
}
// End -->