//pop up for terms and privacy
function popupWin(URL) {
	window.open(URL,"","height=380,width=550,toolbar=0,menubar=0,location=0,menu=0,scrollbars=1,resizable=1");
}
function tourWin(URL) {
	window.open(URL,"","height=475,width=525,toolbar=0,menubar=0,location=0,menu=0,scrollbars=1,resizable=1");
}
function mapsWin(URL) {
	window.open(URL,"","height=340,width=605,toolbar=0,menubar=0,location=0,menu=0,scrollbars=0,resizable=1");
}
function googleWin(URL) {
	window.open(URL,"","height=500,width=750,toolbar=0,menubar=0,location=0,menu=0,scrollbars=0,resizable=1");
}
//Get directions
function getDirections() {
	var from=document.getDir.homePostCode.value;
	newWindow=window.open('http://maps.google.co.uk/maps?saddr='+from+'&daddr=LA233HH','newWin','height=600,width=800,resizable=yes,scrollbars=yes,menubar=no,addressbar=no');
}