function februaryP() {
  var R;
  R="";
  try {
    R=februaryP2();
  }
  catch(e) {
    return "";
  }
  return R;
}

function februaryP2() {
  var R = "";
  var L,i,z;
  var N = new Array();
  var now = new Date();
  var d = now.getDate();
  var crtm = now.getMonth()+1;
     if (d<15) {
       N[N.length]=0;
     }
     else if ((crtm==12)&&(2==1)) {
       N[N.length]=0;
     }
     else if (crtm+1==2) {
       N[N.length]=0;
     }
     if (d<3) {
       N[N.length]=1;
     }
     else if ((crtm==12)&&(2==1)) {
       N[N.length]=1;
     }
     else if (crtm+1==2) {
       N[N.length]=1;
     }
     N[N.length]=2;
     N[N.length]=3;
     if (d<18) {
       N[N.length]=4;
     }
     else if ((crtm==12)&&(2==1)) {
       N[N.length]=4;
     }
     else if (crtm+1==2) {
       N[N.length]=4;
     }
     N[N.length]=5;
     N[N.length]=6;
     N[N.length]=7;
     N[N.length]=8;
     N[N.length]=9;
  L=N.length;
  if (L>0) {
    i=Math.floor(Math.random()*(L));
    if ((i>=0)&&(i<L)) {
       z=N[i];
       if (z==0) {
          R="<a href=\"http://www.edhelper.com/valentine.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/febval.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/valentine.htm\"><FONT SIZE=\"2\">Valentine's Day</A><BR></FONT><BR>";
       }
       else if (z==1) {
          R="<a href=\"http://www.edhelper.com/Groundhog_Day.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/ghog1.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/Groundhog_Day.htm\"><FONT SIZE=\"2\">Groundhog Day</A><BR></FONT><BR>";
       }
       else if (z==2) {
          R="<a href=\"http://www.edhelper.com/BlackHistory.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/blackhistory.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/BlackHistory.htm\"><FONT SIZE=\"2\">Black History</A><BR></FONT><BR>";
       }
       else if (z==3) {
          R="<a href=\"http://www.edhelper.com/sports.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/sportsthemep.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/sports.htm\"><FONT SIZE=\"2\">Sports</A><BR></FONT><BR>";
       }
       else if (z==4) {
          R="<a href=\"http://www.edhelper.com/presidents.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/uspresidents.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/presidents.htm\"><FONT SIZE=\"2\">President's Day</A><BR></FONT><BR>";
       }
       else if (z==5) {
          R="<a href=\"http://www.edhelper.com/endangered_species.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/endangeredprev.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/endangered_species.htm\"><FONT SIZE=\"2\">Endangered Animals</A><BR></FONT><BR>";
       }
       else if (z==6) {
          R="<a href=\"http://www.edhelper.com/100th_day_of_school.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/100daythemeprev.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/100th_day_of_school.htm\"><FONT SIZE=\"2\">100th Day of School</A><BR></FONT><BR>";
       }
       else if (z==7) {
          R="<a href=\"http://www.edhelper.com/music.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/musicthemeprev.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/music.htm\"><FONT SIZE=\"2\">Music</A><BR></FONT><BR>";
       }
       else if (z==8) {
          R="<a href=\"http://www.edhelper.com/President_George_Washington.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/febthemepresidentgwashington.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/President_George_Washington.htm\"><FONT SIZE=\"2\">George Washington</A><BR></FONT><BR>";
       }
       else if (z==9) {
          R="<a href=\"http://www.edhelper.com/President_Abraham_Lincoln.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/febthemespresidentabelincolne.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/President_Abraham_Lincoln.htm\"><FONT SIZE=\"2\">Abraham Lincoln</A><BR></FONT><BR>";
       }
    }
  }
  return R;
}

