<!-- Begin
w = new Array();
r = new Array();
w[1]="July 11, 2009";
r[1]="<p><span class=ul>July 10, 2009</span>- The last day to apply for Fall 2009 commencement.<\/p>";
w[2]="August 18, 2009";
r[2]="<p><span class=ul>August 17, 2009</span>- Two day orientation for new SHS graduate students begins ( Rm 203 SRS Bldg ).<\/p>";
w[3]="August 20, 2009";
r[3]="<p><span class=ul>August 19, 2009</span>- Fall classes begin.<\/p>";
w[4]="October 17, 2009";
r[4]="<p style='color:red;text-align:center'>Important</p><p><span class='ul'>Undergrads</span>: print a copy of your SMART sheet from your SOAR account and bring it with you to your advisement appointment.<\/p>";

t=new Date()
i=1;
for (i=1; i<=4; i++)
{
m=new Date(w[i])
m.setYear=t.getYear;
d=(m.getTime() - t.getTime()) / (1000*60*60*24);
d=Math.round(d);
if ((d)>=0)
document.write(r[i]);
}
// End -->