<!-- hide

// -------------------------------------------------------
//  Javascript written by Jae Yoon			  
//  Copyright © 1995-2007, Jae Yoon. All rights reserved. 
//  You can copy the source but just keep the recognition 
//  to the programmer					  
//  Ideas are priceless, Say NO to piracy!		  
// -------------------------------------------------------


  // select_auto_jump for Events


function GenerateDynamicCEECalendar() {

document.write ('<SPAN CLASS="ssbBls">Dynamic Calendar Builder</SPAN>');
document.write ('<FORM NAME="calControl" onSubmit="return false;">');
document.write ('<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 CLASS="ssBks">');
document.write ('<TR><TD COLSPAN=7 CLASS="ssBks">');
document.write ('<CENTER>');
document.write ('<SELECT NAME="month" onChange="selectDate()">');
document.write ('   <OPTION>January');
document.write ('   <OPTION>February');
document.write ('   <OPTION>March');
document.write ('   <OPTION>April');
document.write ('   <OPTION>May');
document.write ('   <OPTION>June');
document.write ('   <OPTION>July');
document.write ('   <OPTION>August');
document.write ('   <OPTION>September');
document.write ('   <OPTION>October');
document.write ('   <OPTION>November');
document.write ('   <OPTION>December');
document.write ('</SELECT>');
document.write ('<INPUT NAME="year" TYPE=TEXT SIZE=4 MAXLENGTH=4>');
document.write ('<INPUT TYPE="button" NAME="Go" value="Build!" onClick="selectDate()">');
document.write ('');
document.write ('</TD>');
document.write ('</TR>');
document.write ('</FORM>');
document.write ('');
document.write ('<FORM NAME="calButtons">');
document.write ('<TR><TD align="center"><textarea FONT="Courier" NAME="calPage" WRAP=no ROWS=8 COLS=22></textarea></TD>');
document.write ('<TR><TD ALIGN=center>');
document.write ('<INPUT TYPE=BUTTON NAME="previousYear" VALUE="<<Y" onClick="setPreviousYear()">');
document.write ('<INPUT TYPE=BUTTON NAME="previousYear" VALUE="<M" onClick="setPreviousMonth()">');
document.write ('<INPUT TYPE=BUTTON NAME="previousYear" VALUE="Today" onClick="setToday()">');
document.write ('<INPUT TYPE=BUTTON NAME="previousYear" VALUE="M>" onClick="setNextMonth()">');
document.write ('<INPUT TYPE=BUTTON NAME="previousYear" VALUE="Y>>" onClick="setNextYear()">');
document.write ('</TD></TR></TABLE>');
document.write ('</CENTER>');
document.write ('</FORM>');

}

GenerateDynamicCEECalendar();


// End -->

