// JavaScript Document
<script type="text/javascript">
	    //<![CDATA[
	     function show(element){
	           element.className += "hover";
	           }
	   function hide(element){
	           element.className = element.className = "";
	     }
	    //]]>
	

<!--
function setDates(fm) {
  var today = new Date;
  var nextdayMS = today.getTime() + (60 * 60 * 24 * 1 * 1000);
  var verynextdayMS =  today.getTime() + (60 * 60 * 24 * 2 * 1000);
  var nextday = new Date(nextdayMS);
  var verynextday = new Date(verynextdayMS); 

  fm.dayEB.selectedIndex=(nextday.getDate()-1);
  
  fm.monthEB.selectedIndex = nextday.getMonth()

  var theYear = (parseInt(nextday.getYear()));
  if (theYear < 999) {theYear = theYear+1900;}
  fm.yearEB.selectedIndex= theYear-2009;
 
  theYear = (parseInt(verynextday.getYear()));
  if (theYear < 1900) {theYear = theYear+1900;} 


}
//-->
</script>
