//Javascript used in index.php (and thus, all topic pages, as well)

function TestBrowser() {
   if (navigator.appName == "Microsoft Internet Explorer") {
      return("IE")
   }
   else if (navigator.userAgent.substr(0, 7) == "Mozilla") {
      return("FF")
   }
   else {
      return("")
   }            
}

function SVG(SVGDoc, w, h) {
   if (TestBrowser() == "FF") {
      return("<embed src=\"" + SVGDoc + "\" width=\"" + w + "\" height=\"" + h + "\" type=\"image/svg+xml\" pluginspage=\"http://www.adobe.com/svg/viewer/install/\" />")
   }
   else {
      return("")
   }
}

function ForWrite(Phrase, Times)
{
   for (i = 0; i <= Times; i++) {
      document.write(Phrase)
   }
}

function FFSpace(Distance) { //Space out DIV.Quote when using images
   if (TestBrowser() == "FF") {
      ForWrite("<br>", Distance)
   }
}