// CODE FOR DMR ELEMENT CHECKER // document.write("
"); var DMRoutput = ""; var PDFcount = 0; var SWFcount = 0; var ZIPcount = 0; var EXEcount = 0; var SolidWorkscount = 0; function checkPDFs() { var DMRs = document.all ? document.all.tags("b") : document.getElementsByTagName("b"); for (b=0; bPDFs needed on this page: " + PDFcount + "
"; if (SWFcount > 0) DMRoutput += "SWFs needed on this page: " + SWFcount + "
"; if (ZIPcount > 0) DMRoutput += "ZIPs needed on this page: " + ZIPcount + "
"; if (EXEcount > 0) DMRoutput += "EXEs needed on this page: " + EXEcount + "
"; if (SolidWorkscount > 0) DMRoutput += "SolidWorks needed on this page: " + SolidWorkscount + "
"; DMRoutput += ""; document.getElementById("DMRdisplay").innerHTML = DMRoutput; } // document.onload = setTimeout('checkPDFs();',7000);