<!--
<!-- Hide from old browsers

  

  message     = "WE ONLY DISCOUNT THE PRICE...NEVER THE QUALITY^" +
                "TOP QUALITY PRODUCTS...AT MIDDLE OF THE ROAD PRICES^" +
                "IMPROVE YOUR HOME WITH US...WITH OUR QUALITY PRODUCTS^" +
                "WE UNDERSTAND JUST HOW IMPORTANT IT IS TO GET THINGS RIGHT^" +
                
                
                "^"
  scrollSpeed = 90
  lineDelay   = 2000

  txt         = ""

  function scrollText(pos) {
    if (message.charAt(pos) != '^') {
      txt    = txt + message.charAt(pos)
      status = txt
      pauze  = scrollSpeed
    }
    else {
      pauze = lineDelay
      txt   = ""
      if (pos == message.length-1) pos = -1
    }
    pos++
    setTimeout("scrollText('"+pos+"')",pauze)
  }

  // Unhide -->
scrollText(0)

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

