
var date = new Date();
var yy = date.getYear();
var year = (yy < 1000) ? yy + 1900 : yy;



var win= null;
function popWin(mypage,myname,w,h) {
	var winl = (screen.width-w)/2;
	var wint = 0;
	settings='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=no,toolbar=no,location=no,status=no,menubar=no,resizable=no,dependent=no'
	win=window.open(mypage,myname,settings)
}

function formHandler(form){
var URL = document.form.site.options[document.form.site.selectedIndex].value;
window.location.href = URL;
}

