<!-- hide script from old people.
//Script (C) Copyright 1998 Tom Negrino and Dori Smith
//no right mouse click on web page


var message="Welcome to Flying Wombat Air Tours"; // Message for the alert box
function click(e) {

if (navigator.appName=="Microsoft Internet Explorer") {
if (event.button == 2) {
alert(message);
return false;
}
}

if (navigator.appName=="Netscape") {
if (e.which == 3) {
alert(message);
return false;
}
}
}

if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

var clocktext, timeday;
var pagetitle = document.title;
function scroll()
{
today = new Date();
sec = today.getSeconds();
hr = today.getHours();
min = today.getMinutes();

// 12 Hour clock fix
if (hr < 12) { timeday = " AM";
}

else
{ timeday = " PM"; }
if (hr > 12) hr = hr - 12;
if (hr <= 9) hr = "0" + hr;
if (min <= 9) min = "0" + min;
if (sec <= 9) sec = "0" + sec;
var clocktext = " - " + hr + ":" + min + ":" + sec + timeday + " - - - - - - - - - - - - ";
clocktimer = setTimeout("scroll()", 1000);
document.title = pagetitle + clocktext;
}

if (document.all) scroll();
// end of hide -->
