// SLIDE MENUE Functions
Menu = {timer : null, current : null};
Menu.getStyle = function(name){
	if(document.getElementById) return document.getElementById(name).style;
	else if(document.all) return document.all[name].style;
	else if(document.layers) return document.layers[name];
}
Menu.show = function(name){
	if(this.timer) clearTimeout(this.timer);
	this.getStyle(name).visibility = "visible";
	this.current = name;
}
Menu.hide = function(){
	this.timer = setTimeout("Menu.doHide()",400);
}
Menu.doHide = function(){
	if(this.current){
		this.getStyle(this.current).visibility = "hidden";
		this.current = null;
	}
}
// Functions DATE
var now = new Date();
var yr = now.getYear();
if (yr < 2000) yr += 1900; //for Netscape
var mName = now.getMonth() + 1;
var dName = now.getDay() + 1;
var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
if(dName==1) Day = "Sunday";
if(dName==2) Day = "Monday";
if(dName==3) Day = "Tuesday";
if(dName==4) Day = "Wednesday";
if(dName==5) Day = "Thursday";
if(dName==6) Day = "Friday";
if(dName==7) Day = "Saturday";
if(mName==1) Month="01";
if(mName==2) Month="02";
if(mName==3) Month="03";
if(mName==4) Month="04";
if(mName==5) Month="05";
if(mName==6) Month="06";
if(mName==7) Month="07";
if(mName==8) Month="08";
if(mName==9) Month="09";
if(mName==10) Month="10";
if(mName==11) Month="11";
if(mName==12) Month="12";
// String to display current date.
var todaysDate =(" "
+ Day
+ " "
+ dayNr
+ "/"
+ Month
+ "/"
+ yr
+ "<BR>");
document.open();
//DropDown Redirect
function redirectToOutsideUS(turl)
	{
             if (turl != ""){
                 var newWindow = window.open(turl);
                             }
    }

