/****
*COUPON POP UP
**/
function coupon1() {
  var popup = null
  popup = window.open('coupons.html','remotecontrol','width=550,height=500,resizable=yes,status=0,scrollbars=yes')
  if (popup != null) {
    if (popup.opener == null) {
      popup.opener = self
    }
    popup.location.href = 'coupons.html'
  }
}

