function PopupPic(sPicURL) { 
	window.open("popupimg.php?"+sPicURL, "", "height=400,width=500,location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no,directories=no,channelmode=no");
}
function showsub (subMenu) {
	if(document.getElementById) {
		document.getElementById(subMenu).className = "submenuOn";
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

//code for mouse hover on booking page
// Start trapping mouse

if (document.layers) document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=mtrack;
var ent; // Our floating div
var posx=0; // Our mouseX
var posy=0; // Our mouseY
var offsetX=8; // Offset X away from mouse
var offsetY=8; // Offset Y
var popUp = false; // Is it showing right now??!

// Run upon load
function init() {
// Set up div we will use to hover our text
ent = document.createElement("div");
// Change these to customise your popup
ent.style.color = "#000000";
ent.style.font = "normal xx-small verdana";
ent.style.padding = "3px 3px 3px 3px";
ent.style.background = "#95A3BF";
ent.style.border = "1px solid black";
// Don't, however, change these
ent.style.left = -100;
ent.style.top = -100;
ent.style.position = 'absolute';
ent.innerHTML = '';
ent.style.zIndex = 10;
document.getElementById("thepage").appendChild(ent);
}
// Keeps mouse x and y in posx and posy

function mtrack(e) {
if (popUp) {
if (!e) var e = window.event;
if(e)   {
  x=e.pageX?e.pageX:e.clientX?e.clientX + document.body.scrollLeft:0;
  y=e.pageY?e.pageY:e.clientY?e.clientY + document.body.scrollTop:0;
}
else {
  x=0; y=0;
}
ent.left = x + offsetX + 'px';
ent.top = y + offsetY + 'px';
}
}
// Change floating div to correct text on mouseover

function doText(t, e) {
popUp = true;
ent.innerHTML = t;
}
// Change back to nothing

function doClear() {
popUp = false;
ent.style.left = -100;
ent.style.top = -100;
ent.innerHTML = "";
}