<!-- 
document.writeln('<SCRIPT LANGUAGE="JavaScript">');
document.writeln('<!-- //this is for the meeting date ');
document.writeln('<!-- ');
document.writeln('var now = new Date(); ');
document.writeln('var then = new Date("Mar, 17 2010"); ');
document.writeln('var clubMeet = ("17th, March");');
document.writeln('var gap = then.getTime() - now.getTime(); ');
document.writeln('gap = Math.floor(gap / (1000 * 60 * 60 * 24))+1; ');
document.writeln('if (gap == 1) ');
document.writeln('{ ');
document.writeln('document.write("Next Club Meeting on "+"<BR>"+ clubMeet + "<BR><BR>"+ "This is in" + " " + gap + " Days"); ');
document.writeln('} ');
document.writeln('else ');
document.writeln('if (gap == 0) ');
document.writeln('{ ');
document.writeln('document.write("Meeting Tonight 7:30-10:00 Pm"); ');
document.writeln('} ');
document.writeln('else ');
document.writeln('if (gap < 0) ');
document.writeln('{ ');
document.writeln('document.write("Meeting To Be Updated"); ');
document.writeln('} ');
document.writeln('else ');
document.writeln('{ ');
document.writeln('document.write("Next Club Meeting on "+"<BR>"+ clubMeet + "<BR><BR>"+ "This is in" + " " + gap + " Days"); ');
document.writeln('} ');
document.writeln(' //--> ');
document.writeln('</SCRIPT> ');

//-->¬