function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		win.window.focus();
		 }
		 }
function EventWindow(mypage, myname, mydate, mytitle, mycontents, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,status=no,titlebar=no,menubar=no,location=no';
	winevent = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { 
		winevent.window.focus();
		 }
    winevent.document.write("<HTML><HEAD><link href='media/style/thesquare.css' rel='stylesheet' type='text/css'><TITLE>The Square, Newbury - Events - "+mytitle+"</TITLE></HEAD><BODY onBlur='self.close()'>");
   	winevent.document.writeln('<div id="events"><h2>The Square, Newbury Events<br>'+mytitle+'<br>'+mydate+'</h2><P>'+mycontents+'</P>');	
   	winevent.document.writeln('<p>5-6 Weavers Walk, Newbury, Berkshire. RG14 1AL - Telephone: <b>01635 44805</b> - Fax: <b>01635 523114</b></p>');	
   	winevent.document.writeln('<p><A HREF="javascript:window.print()">Click to print page</a><br>');	
   	winevent.document.writeln('<a href="javascript:window.close()">Click to close page</a></p></div></BODY></HTML>');
   	}	