// JavaScript Document
function CentreWindow(mypage, myname, w, h, scroll) {
	var winl = ((screen.width - w) / 2) - 305;
	var wint = ((screen.height - h) / 2) - 230;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',toolbar=no,resizable=no,status=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	win.window.focus();
}

function resizeBrowser(width, height){
	window.resizeTo(width, height)
}