	function setSelectors(){
		dt=new Date();
		y=dt.getFullYear();
	
		document.dateselector.year1.options[0]=new Option(y);
		document.dateselector.year1.options[1]=new Option(y+1);
		document.dateselector.mon1.selectedIndex=dt.getMonth();
		document.dateselector.day1.selectedIndex=dt.getDate()-1;
		}

// this doesn't set selectors - but it's necessary on quite a few pages, so it was added here - Jim, 2008-01-29
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}


// Centered Pop-Up for Mardi Gras
//   function openCentredWindow(url:String, winName:String, wide:Number, high:Number, chrome:Boolean, centered:Boolean)
//   {
//   Chrome on, centered
//   else if (chrome == true && centered == true)
//   {
//        getURL("javascript:"+winName+"=window.open('"+url+"', '"+winName+"', 'width="+wide+",height="+high+",left=0,top=0,toolbar=1,location=1,scrollbars=1,status=1,resizable=1,fullscreen=no'); "+winName+".focus(); screen_height = window.screen.availHeight;screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-("+wide+"/2); top_point = parseInt(screen_height/2)-("+high+"/2); setTimeout('"+winName+".moveTo(left_point,top_point)',10); void(0);");
//   }
//   }