function novemberP() {
  var R;
  R="";
  try {
    R=novemberP2();
  }
  catch(e) {
    return "";
  }
  return R;
}

function novemberP2() {
  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<24) {
       N[N.length]=0;
     }
     else if ((crtm==12)&&(11==1)) {
       N[N.length]=0;
     }
     else if (crtm+1==11) {
       N[N.length]=0;
     }
     N[N.length]=1;
     if (d<12) {
       N[N.length]=2;
     }
     else if ((crtm==12)&&(11==1)) {
       N[N.length]=2;
     }
     else if (crtm+1==11) {
       N[N.length]=2;
     }
     N[N.length]=3;
     N[N.length]=4;
  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/Thanksgiving.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/novtg.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/Thanksgiving.htm\"><FONT SIZE=\"2\">Thanksgiving</A><BR></FONT><BR>";
       }
       else if (z==1) {
          R="<a href=\"http://www.edhelper.com/Native_Americans.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/nativeamericans.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/Native_Americans.htm\"><FONT SIZE=\"2\">Native Americans</A><BR></FONT><BR>";
       }
       else if (z==2) {
          R="<a href=\"http://www.edhelper.com/VeteransDay.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/veteransdayprev.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/VeteransDay.htm\"><FONT SIZE=\"2\">Veteran's Day</A><BR></FONT><BR>";
       }
       else if (z==3) {
          R="<a href=\"http://www.edhelper.com/tobacco.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/smokeout.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/tobacco.htm\"><FONT SIZE=\"2\">Great American Smokeout</A><BR></FONT><BR>";
       }
       else if (z==4) {
          R="<a href=\"http://www.edhelper.com/birds.htm\"><IMG src=\"http://www.edhelperclipart.com/clipart/birdsthemeprev.jpg\" alt=\"\" border=\"0\"></a><BR>"+
            "<a href=\"http://www.edhelper.com/birds.htm\"><FONT SIZE=\"2\">Birds</A><BR></FONT><BR>";
       }
    }
  }
  return R;
}
