//BROWSER REDIRECT
intPos = navigator.appVersion.indexOf('MSIE') + 5;
strVersion = navigator.appVersion.substr(intPos, 1);

if (navigator.appName.indexOf('Microsoft') != -1) {
if(strVersion <= 3) {window.location='newbrowser.htm'};
}

if (navigator.appName.indexOf('Netscape') != -1) {
if (navigator.appVersion.substring(0,1) <= 4) {window.location = 'newbrowser.htm'};
}


//NAVIGATION
function nav_on(id) {
var_1 = document.getElementById(id).style;
var_1.background = '#6699ff';
}

function nav_out(id) {
var_1 = document.getElementById(id).style;
var_1.background = '';
}


//THE DATE
var the_months=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
var the_days=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
today=new Date();
thisYear=today.getFullYear();
thisMonth=the_months[today.getMonth()];
thisDay=the_days[today.getDay()];
thisDate=today.getDate();
todaysDate=thisDay+", "+thisDate+" "+thisMonth+" "+thisYear;