<!--

//Srolling News
//..New Season On Sale Now...
//"... Online Booking Currently Not Available"

msg = "... Online Booking Currently Not Available";
msg = msg + " ";
pos = 0;

function ScrollMessage() {
   var newtext = msg.substring(pos, msg.length) + msg.substring(0, pos);
   var td = document.getElementById("scroll");
   td.firstChild.nodeValue = newtext;
   pos++;
   if (pos > msg.length) pos = 0;
   window.setTimeout("ScrollMessage()",200);
}

// new scroll
// Text box marquee by Dave Methvin,Windows Magazine

ScrollSpeed = 225
ScrollChars = 1
function ScrollMarquee() {
window.setTimeout('ScrollMarquee()',ScrollSpeed);

var msg = document.marquee1.text.value; 
document.marquee1.text.value =
msg.substring(ScrollChars) +
msg.substring(0,ScrollChars); 
}




//Open Browser Window

function MM_openBrWindow(theURL,winName,features) { 
  window.open(theURL,winName,features);
}
	
	
// Function to OPEN Browser Window for video		 

		<!-- function openMediaWin -->
		pantop = 50
		panleft = 50
		
		if (screen) {
		pantop = 150
		panleft = 200
		}
						
		function openMediaWin(URL){
		PanoWin=window.open(URL,"Pano","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=450,height=375,left="+panleft+",top="+pantop+"")
		}	
	
//-->