function EmbedPDF(URL,autostart){
   if(autostart != true && autostart != "true" && autostart != "1" && autostart != 1){
      autostart = 0; //Replace with default. Default = 0 (false).
      }else{
      autostart = 1; //Replace with 1, being zero.
   }//See if we can continue.
   if(URL == null || URL == "illegal"){
      //Nope, we can't.
      document.writeln("&nbsp;error: illegal use of pdf tag!&nbsp;");
   }else{
      //Add the code to the document.
      document.writeln('<img src="images/icon_pdfsmall.png" border="0" title="PDF" />&nbsp;<b>PDF File:</b>&nbsp;<a href=' + URL +'>Click Here to Download</a><br /><br />');
      document.writeln('<font size="1">If you can not see the PDF file below you may need <a href="http://get.adobe.com/reader">Adobe Reader</a>.</font><br /><br />');
      document.writeln('<embed src=' + URL + ' width="625" height="475" />');
   }
}

