var montharray=new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec")

function countdown(holiday,yr,m,d){			//countdown(2003,12,25)
  var today=new Date();
  var todayy=today.getYear();
  if(todayy < 1000) todayy+=1900;
  var todaym=today.getMonth();
  var todayd=today.getDate();
  var todaystring=montharray[todaym]+" "+todayd+", "+todayy;
  var futurestring=montharray[m-1]+" "+d+", "+yr;
  var difference=(Math.round((Date.parse(futurestring)-Date.parse(todaystring))/(24*60*60*1000))*1);
  document.write('<FONT SIZE="2"><I><CENTER>');
  if(difference==0) document.write("Today is "+holiday);
  else if (difference>0)
    document.write("There are only "+difference+" more days until "+holiday);
  document.write('</CENTER></I></FONT>');
}

document.write('\
<TABLE WIDTH="800" BORDER="0" CELLSPACING="0" CELLPADDING="0">\
  <TR>\
    <TD ALIGN="center" VALIGN="center" WIDTH="175">\
      <A HREF="http://OLPHSaints.org"><IMG SRC="/school/script/logocross.jpg" BORDER=0></TD></A>\
    <TD BACKGROUND="/school/image/newschool.jpg" ALIGN="center" VALIGN="top" HEIGHT="275">\
      <H4><FONT FACE="Script MT Bold">\
        The mission of Our Lady of Perpetual Help Catholic School<BR>\
        is to educate the whole child; mind, heart, and soul,<BR>\
        according to the teachings of Jesus Christ.</FONT></H4>\
      <FONT FACE="Times New Roman, Times, serif" COLOR="white"><BR><BR>\
      <FONT SIZE="+2">Our Lady of Perpetual Help School</FONT><BR>\
      <FONT SIZE="+1"><B>3752 Broadway &#149; Grove City, OH &#149; 43123 <BR> 614-875-6779</B></FONT></FONT>\
    <TD ALIGN="center" VALIGN="center" WIDTH="175">\
      <IMG SRC="/school/image/oldschool.jpg" WIDTH="150"><BR>\
      <A HREF="http://OLPHSaints.org"><IMG SRC="/school/image/50thsmall.jpg" BORDER=0></TD></A>\
      <!--<H3 ALIGN="center"><FONT FACE="Script MT Bold">\
        Now in its 50th year<BR>\
        Founded 1960</FONT></H3>-->\
  <TR><TD ALIGN="center" VALIGN="top" COLSPAN="99" BGCOLOR="black">\
      <A HREF="http://OurLadyOfPerpetualHelp.net/parish/index.html" STYLE="text-decoration:none">\
      <FONT SIZE="2" COLOR="white"><B>&nbsp; &nbsp;\
      &nbsp; &nbsp; &nbsp; &nbsp; Our Parish</B></FONT></A>\
      <A HREF="http://OLPHSaints.org/school/index.html" STYLE="text-decoration:none">\
      <FONT SIZE="2" COLOR="white"><B>&nbsp; &nbsp;\
      &nbsp; &nbsp; &nbsp; &nbsp; Our School</B></FONT></A>\
      <A HREF="http://OLPHLifeTeen.org/lifeteen/index.html" STYLE="text-decoration:none">\
      <FONT SIZE="2" COLOR="white"><B>&nbsp; &nbsp;\
      &nbsp; &nbsp; &nbsp; &nbsp; Life Teen</B></FONT></A>\
      <A HREF="http://OurLadyOfPerpetualHelp.net/kofc/index.htm" STYLE="text-decoration:none">\
      <FONT SIZE="2" COLOR="white"><B>&nbsp; &nbsp;\
      &nbsp; &nbsp; &nbsp; &nbsp; Knights Of Columbus</B></FONT></A>\
  </TD>\
  <TR>\
    <TD BGCOLOR="blue" WIDTH="175">&nbsp;</TD>\
    <TD>\
');
countdown("First Day of School, August 25, 2010",2010,08,25);
document.write('\
</TD>\
  </TR>\
</TABLE>\
');

document.write('<FONT FACE="Arial, Helvetica, sans-serif" SIZE="-2">');
