  var today = new Date();
  var q = today.getMonth();
  var date = today.getDate();
  var coupons = "";
   if (q == 8 && date >= 1 && date <= 6) {
    coupons = "Current PF Coupon Offers:<div style='padding:2px;'><\/div>Sweet Deal!<div style='padding:2px;'><\/div>Coupon Code: LaborDayTraffic<br>Free Shipping on Super Saver, Canadian Airmail or International orders with a subtotal of $30+<div style='padding:2px;'><\/div>Coupon Code: OhYeahLngWkends<br>Save $20 on orders with a subtotal of $75+<div style='padding:2px;'><\/div><font color=#c0c0c0>Valid 9/1/2011 thru 9/6/2011<\/font>";
}
   else {
    coupons = "No PF coupons at this time";
}
    document.write(coupons);
