//popup window
function newWin(URL) {
	window.open(URL,"","height=450,width=500,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 dirWin(URL) {
	window.open(URL,"","height=470,width=500,toolbar=0,menubar=0,location=0,menu=0,scrollbars=0,resizable=1");
}
//check dates in contact form
function checkDate(){
	if (document.forms[0].plannedDeparture.value < document.forms[0].plannedArrival.value) {
			alert("Your departure date must be after your arrival date!");
	}
}
//Image gallery script
function showPic(whichpic) {
	var source = whichpic.getAttribute("href");
	var placeholder=document.getElementById("placeholder");
	placeholder.setAttribute("src",source);
	var text = whichpic.getAttribute("title");
	var description = document.getElementById("pictureDescription");
	description.firstChild.nodeValue = text;
}