<!-- 
function right(e) {
var msg = "Sorry, you don't have permission to right-click on images.";
if (navigator.appName == 'Netscape' && e.which > 3) {
alert(msg);
return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
else return true;
}

function trap() 
  {
  if(document.images)
    {
    for(i=0;i<document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
  }



function getDate() {
var today = new Date();
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds()
var year = today.getYear();
var month = today.getMonth();
if (month==0) {
month="January";
}
if (month==01) {
month="February";
}
if (month==02) {
month="March";
}
if (month==03) {
month="April";
}
if (month==04) {
month="May";
}
if (month==05) {
month="June";
}
if (month==06) {
month="July";
}
if (month==07) {
month="August";
}
if (month==08) {
month="September";
}
if (month==09) {
month="October";
}
if (month==10) {
month="November";
}
if (month==11) {
month="December";
}

if (minutes<10) {
minutes="0"+minutes;
}
if (hours<10) {
hours="0"+hours;
}

var day = today.getDate();
if (year<2000) {
year=year-100;
year=year+2000;
}
document.write(hours+":"+minutes+"&nbsp;&nbsp;&nbsp;"+(month)+" "+day+" "+year);
}


<!--rollover script-->

if (document.images) {
                    var sitemapoff = new Image(); // for the inactive image
                    sitemapoff.src = "images/sitemap_off.gif";
                    var sitemapon = new Image(); // for the active image
                    sitemapon.src = "images/sitemap_on.gif";
					var stressbustoff = new Image(); // for the inactive image
                    stressbustoff.src = "images/stressbuster_off.gif";
                    var stressbuston = new Image(); // for the active image
                    stressbuston.src = "images/stressbuster_on.gif";
					var bathoff = new Image(); // for the inactive image
                    bathoff.src = "images/bath_off.gif";
                    var bathon = new Image(); // for the active image
                    bathon.src = "images/bath_on.gif";
					var newburyoff = new Image(); // for the inactive image
                    newburyoff.src = "images/newbury_off.gif";
                    var newburyon = new Image(); // for the active image
                    newburyon.src = "images/newbury_on.gif";
					var swindonoff = new Image(); // for the inactive image
                    swindonoff.src = "images/swindon_off.gif";
                    var swindonon = new Image(); // for the active image
                    swindonon.src = "images/swindon_on.gif";
					var usefuloff = new Image(); // for the inactive image
                    usefuloff.src = "images/box_info_left_off.gif";
					var usefulon = new Image(); // for the inactive image
                    usefulon.src = "images/box_info_left_on.gif";
                    var latestoff = new Image(); // for the active image
                    latestoff.src = "images/box_latest_left_off.gif";
					var lateston = new Image(); // for the active image
                    lateston.src = "images/box_latest_left_on.gif";
					

                    var folder_iconoff = new Image(); // for the active image
                    folder_iconoff.src = "images/icon_folder_off.gif";
					var folder_iconon = new Image(); // for the active image
                    folder_iconon.src = "images/icon_folder_on.gif";
					var folder_icon2off = new Image(); // for the active image
                    folder_icon2off.src = "images/icon_folder_off.gif";
					var folder_icon2on = new Image(); // for the active image
                    folder_icon2on.src = "images/icon_folder_on.gif";
					var folder_icon3off = new Image(); // for the active image
                    folder_icon3off.src = "images/icon_folder_off.gif";
					var folder_icon3on = new Image(); // for the active image
                    folder_icon3on.src = "images/icon_folder_on.gif";
					
					
}
                  function ImageOver(thing) {
                    if (document.images) {
                      document.getElementById(thing).src = eval(thing + "on.src");
					  }
                  }

                  function ImageOff(thing) {
                    if (document.images) {
                     document.getElementById(thing).src = eval(thing + "off.src");
					  }
                  }
				  
				  
function pop(URL,x,y) {
window.open(URL,'popup','toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=' + x + ',height=' + y);
}

//-->