function datechg() { 
	var setrue = true;
    newwin = window.open( '', '', 'status=yes,top=200,left=250,width=250,height=170' ); 
    if ( !newwin.opener ) newwin.opener = self; 
    with ( newwin.document ) { 
        open(); 
        write( '<body>' ); 
        write( '<table width=100%><tr><td align=center>' ); 
        write( 'NOTICE!<p>The dates you selected were outside of the current 365 day calendar and have been adjusted.' );
        write( '<p><a href="#" onclick="window.close();">Close</a>' );
        write( '</td></tr></table>' ); 
        close();  
    } 
} 

function setdate() 
{
Base = new Date().getFullYear()
var thedate = new Date( ); 
var themonth = thedate.getMonth( ); 
var theday = thedate.getDate( ); 
var theyear = thedate.getFullYear()-Base;
document.availform.zyear.options[theyear].selected = 'true';
document.availform.zmonth.options[themonth].selected='true'; 
document.availform.zday.options[theday].selected='true'; 

}
