<!--
var supported = navigator.userAgent.indexOf("Mozilla")==0 && navigator.userAgent.substring(8,9) >= 3;


function replaceIn(text, stext, rtext){
    var i = text.lastIndexOf(stext);
    if (i >=0) {return text.substring(0,i)+rtext+text.substring(i+stext.length);}
    else {return text;}
}


function turnOn(imgname){
    if (supported){ document.images[imgname].src=replaceIn(document.images[imgname].src,"_off.","_on."); }
}


function turnOff(imgname){
    if (supported){ document.images[imgname].src=replaceIn(document.images[imgname].src,"_on.","_off."); }
}


function make(imgname, srctext, replacetext){
    if (supported){ document.images[imgname].src=replaceIn(document.images[imgname].src,srctext,replacetext); }
}

function WinOpen() {
open("booking.html","Window1","width=560,height=500");
}

function openWin(filename, windowname, height, width) {
    if(supported) {
        popup = window.open(filename,windowname,"resizable=no,scrollbars=yes,status=no,height="+height+",width="+width);
        popup.focus();
        return false;
    } else {
        return true;
    }
}


learn_on = new Image();
learn_on.src = 'images/learn_on.gif';


learn_roll1 = new Image();
learn_roll1.src = 'images/learn_roll1.gif';


learn_roll2 = new Image();
learn_roll2.src = 'images/learn_roll2.gif';


learn_roll3 = new Image();
learn_roll3.src = 'images/learn_roll3.gif';


learn_roll4 = new Image();
learn_roll4.src = 'images/learn_roll4.gif';


listen_on = new Image();
listen_on.src = 'images/listen_on.gif';


listen_roll1 = new Image();
listen_roll1.src = 'images/listen_roll1.gif';


listen_roll2 = new Image();
listen_roll2.src = 'images/listen_roll2.gif';


listen_roll3 = new Image();
listen_roll3.src = 'images/listen_roll3.gif';


listen_roll4 = new Image();
listen_roll4.src = 'images/listen_roll4.gif';


experience_on = new Image();
experience_on.src = 'images/experience_on.gif';


experience_roll1 = new Image();
experience_roll1.src = 'images/experience_roll1.gif';


experience_roll2 = new Image();
experience_roll2.src = 'images/experience_roll2.gif';



experience_roll3 = new Image();
experience_roll3.src = 'images/experience_roll3.gif';


experience_roll4 = new Image();
experience_roll4.src = 'images/experience_roll4.gif';


interact_on = new Image();
interact_on.src = 'images/interact_on.gif';



interact_roll1 = new Image();
interact_roll1.src = 'images/interact_roll1.gif';


interact_roll2 = new Image();
interact_roll2.src = 'images/interact_roll2.gif';


interact_roll3 = new Image();
interact_roll3.src = 'images/interact_roll3.gif';


interact_roll4 = new Image();
interact_roll4.src = 'images/interact_roll4.gif';


contact_on = new Image();
contact_on.src = 'images/contact_on.gif';


contact_roll1 = new Image();
contact_roll1.src = 'images/contact_roll1.gif';


contact_roll2 = new Image();
contact_roll2.src = 'images/contact_roll2.gif';


contact_roll3 = new Image();
contact_roll3.src = 'images/contact_roll3.gif';


contact_roll4 = new Image();
contact_roll4.src = 'images/contact_roll4.gif';


function RollOver_multi(imagename1, newimage1, rollimagename1, newrollimage1, rollimagename2, newrollimage2, rollimagename3, newrollimage3, rollimagename4, newrollimage4, thispagename1, newthispage1){ 
        RollOver(imagename1, newimage1);
		RollOver(rollimagename1, newrollimage1);
		RollOver(rollimagename2, newrollimage2);
		RollOver(rollimagename3, newrollimage3);
		RollOver(rollimagename4, newrollimage4);
		RollOver(thispagename1, newthispage1);
}


function RollOut_multi(imagename1, newimage1, rollimagename1, newrollimage1, rollimagename2, newrollimage2, rollimagename3, newrollimage3, rollimagename4, newrollimage4, thispagename1, newthispage1){ 
        RollOut(imagename1, newimage1);
		RollOut(rollimagename1, newrollimage1);
		RollOut(rollimagename2, newrollimage2);
		RollOut(rollimagename3, newrollimage3);
		RollOut(rollimagename4, newrollimage4);
		RollOut(thispagename1, newthispage1);
}


function RollOver(imagename, newimage){ 
if (document.images) {
			eval("document."+imagename+".src=\""+newimage+"\";");
   }

}


function RollOut(imagename, newimage){ 
if (document.images) {
			eval("document."+imagename+".src=\""+newimage+"\";");
   }  
}


//-->
