﻿// JScript File

    function OpenLookUp()
    {
         window.open("LookUpFormNotes.aspx","LookUpNote","width=600px,height=400px,scrollbars=1,position:relative;"); 
    }
   
    function OpenHelp()
    {
         window.open("EDPHelpFile.aspx?param=report1&param1=page1","HelpFile", "width=760px;height=760px;scrollbars=1;");
    }
   
    function PrintPage()
    {        
        document.hiddenFrame.document.body.innerHTML=document.body.innerHTML;
        var newarray = hiddenFrame.document.getElementsByTagName("div");
        var divVar ;
        var ilu = 0 ;
        for(ilu=0 ; ilu < newarray.length ; ilu++ )
        {
        divVar = hiddenFrame.document.getElementsByTagName("div").item(ilu) ;
        divVar.style.overflowY = "visible";
        }
        hiddenFrame.focus();
        hiddenFrame.print();
    }