<!--

function popup(image,caption)
{
	winimg = window.open("", "", "width=650,height=615")
	winimg.document.write ("<html><head><link rel='STYLESHEET' type='text/css' href='../css/main.css'></head><body class='documentBody'><div align='center'><IMG BORDER=5 SRC='" + image + "'><blockquote>" + caption + "</blockquote>")
	winimg.document.write ("<input class='formButton' onClick='self.close()' type='button' value=' Close Window '></div></body></html>")
}


function bookingPopup(title,body)
{
	winimg = window.open("", "", "width=650,height=615")
	winimg.document.write ("<html><head><title>" + title + "</title><link rel='STYLESHEET' type='text/css' href='../css/main.css'></head><body class='documentBody'><h1>" + title + "</h1>" + body + "")
	winimg.document.write ("<input class='formButton' onClick='self.close()' type='button' value=' Close Window '></div></body></html>")
}

//-->