function Bookings (page) {
	OpenWin = this.open(page, "BookingsWindow", "toolbar=no,menubar=no,status=no, location=no,scrollbars=yes,resizable=no, width=800,height=700");
}

function MapWindow (page) {
	OpenWin = this.open(page, "MapWindow", "toolbar=no,menubar=no,status=no, location=no,scrollbars=yes,resizable=yes, width=770,height=600");
}

function ExampleWindow (page) {
	OpenWin = this.open(page, "ExampleWindow", "toolbar=no,menubar=no,status=no, location=no,scrollbars=no,resizable=no, width=600,height=450");
}

function PricesWindow (page) {
	OpenWin = this.open(page, "aWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no, width=630,height=400");
}

function PricesLookupWindow (page) {
	OpenWin = this.open(page, "aWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no, width=520,height=630");
}

function AboutUsWindow (page) {
	OpenWin = this.open(page, "bWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no, width=770,height=480");
}

function ShortWindow (page) {
	OpenWin = this.open(page, "bWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no, width=770,height=610");
}

function BigWindow (page) {
	OpenWin = this.open(page, "cWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=yes,resizable=no, width=970,height=700");
}

function PhotoWindow (page) {
	OpenWin = this.open(page, "PhotoWindow", "toolbar=no,menubar=no,status=no,location=no,scrollbars=no,resizable=no, width=410,height=610");
}

/***********************************************
* Email Validation script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var emailfilter=/^\w+[\+\.\w-]*@([\w-]+\.)*\w+[\w-]*\.([a-z]{2,4}|\d+)$/i

function checkmail(e){
var returnval=emailfilter.test(e.value)
if (returnval==false){
alert("Please check that you have entered a valid email address.")
e.select()
}
return returnval
}




/*========================================================================*/
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Spike McLarty | http://www.dosadi.com/ */

function copyDate() {
  var cpyrt = document.getElementById("copyright")
  if (cpyrt) {
     cpyrt.firstChild.nodeValue = (new Date()).getFullYear();
  }
}

window.onload = copyDate;
