
suitClass.prototype.spacer = function(w,h) { // version 1.0
  var strBr, strOut;
  strBr = suit.pBrowser();

  if (suit.pBrowser() == "w3c") {
    strOut = "<div style=\"height:" + h + "px;width:" + w + "font-family:monospace;font-size:" + w + "px;\">&nbsp;&nbsp;&nbsp;&nbsp;</div>";
  } else if (suit.pBrowser() == "ns4") {
    strOut =  "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"" + w + "\" height=\"" + h + "\"><tr><td></td></tr></table>";
  }

  document.write(strOut);
}
