function open_window(path,windowName,sendto)
{
var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=700,height=700,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=350,top=30");
newWindow.document.write("<HTML><HEAD><TITLE>Download PDF</TITLE><link href=\"css/main.css\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" /></HEAD>");
newWindow.document.write("<center><div align=center style=\"background:#FFF;width:475px;padding:10px;\"><h3>PDF Form Instructions</h3>");
newWindow.document.write("<p>The form you are about to download can be filled in online <font color=red><b>using Adobe Acrobat Reader software only</b></font> (The Macintosh Preview program does not retain your data). The following instructions explain how to save and send the form to JEDC. The form can also be printed out and filled out offline.");
newWindow.document.write("<p>1. Click the Download PDF link to download the PDF form.");
newWindow.document.write("<p>2. Either open the form using the free Adobe Acrobat Reader or if you have an Acrobat browser plug-in the form will open in this window.");
newWindow.document.write("<p><font color=red size=4>3. Save the PDF file to your computer.</font>");
newWindow.document.write("<p>4. Fill out the fields.");
newWindow.document.write("<p><font color=red size=4>5. IMPORTANT: Save the form to your computer again.</font>");
newWindow.document.write("<p>6. At this point you can either print the saved form or email it to <b>" + sendto + "</b> as a file attachment.");
newWindow.document.write("<br><br><b><a href=" + path + ">Download PDF</a></b>");
newWindow.document.write("<br><br><a href=javascript:window.close();>Close Window</a></div></center>");
newWindow.document.close();
newWindow.focus();
}




