function surfto(form) {



        var myindex=form.select1.selectedIndex



        if (form.select1.options[myindex].value != 0) {



        window.location=form.select1.options[myindex].value;}

}


function cap(){
if(navigator.appName == "Netscape"){

document.captureEvents(Event.CLICK);
document.onClick = handle;

}
}

function cap2(){
if(navigator.appName == "Netscape"){

document.releaseEvents(Event.CLICK);
document.onClick = nothing;
}
}

function nothing(){

}


function handle(evnt){


var x, y

x = evnt.pageX;
y = evnt.pageY;


document.x2.document.layers['div1'].visibility = "inherit";
document.x2.left = (x);
document.x2.top = y;


return true;

}


function hide2(){
document.x2.document.layers['div1'].visibility = "hidden";
document.x2.left = -200;
}


function hide(){
if(navigator.appName != "Netscape"){
document.all.div1.style.visibility = "hidden";
}
}

function show(){
if(navigator.appName != "Netscape"){
document.all.div1.style.visibility = "inherit";
}
}

function renewPage(){

if(navigator.appName == "Netscape"){



window.location.href = document.location;


}
}



Months = new Array();
Months[0]="January";
Months[1]="February";
Months[2]="March";
Months[3]="April";
Months[4]="May";
Months[5]="June";
Months[6]="July";
Months[7]="August";
Months[8]="September";
Months[9]="October";
Months[10]="November";
Months[11]="December";

RightNow = new Date();


var date = RightNow.getDate();
var Month = Months[RightNow.getMonth()];
var Year = RightNow.getFullYear();




































































































                                                                                                                                                     




































































































