/* Window Open Function */

function openMe(URL,width,height) {
	var temp = "window.open('"+URL+"','_blank','width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no')";
	eval(temp);
}

function ThisYear() {
	yNow = new Date();
	document.write(yNow.getFullYear());
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}