<!--
// original variable changed from 'copyright' because datetime2.js uses var 'Stamp'
Stamp=new Date();
update=Stamp.getFullYear();

function myVoid() { ; } // create a void function

function goBack(){
history.go(-1);
// window.location=(storedURL);
}

function exit(){
input_box=confirm("Click OK to close browser window or Cancel");
if (input_box==true){

// Output when OK is clicked
if (navigator.appName == "Microsoft Internet Explorer"){ // better be ie6 at least
parent.window.close();
NewWindow('../exit.html','mywin','530','375','no','center');
}
else{
parent.window.close();
}
}
}

function goForward(){
history.go(+1)
}

var win=null;
function NewWindow(mypage,myname,w,h,scroll,pos){
if(pos=="random"){
LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;
TopPosition=(screen.height)?(screen.height-h)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){
LeftPosition=(screen.width)?(screen.width-w-32):100;
TopPosition="29";}

settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';

win=window.open(mypage,myname,settings);
}

function Set(Cell){
Cell.style.cursor = 'default';
}

function Hilite(name,over){
if(window.document.images){
if (over)
window.document.images[name].src = "img/" + name + "_ov.gif";
else
window.document.images[name].src = "img/" + name + ".gif";
}}

// make page break out of frameset
//if (top!= self){
//top.location = self.location.href;
//}
//  End -->

