﻿// JScript File

     function OpenModalDialog(url,diaHeight,diaWidth)
                {
                window.showModalDialog(url,"#1","dialogHeight: " + diaHeight +"px; dialogWidth: "+diaWidth+"px; dialogTop: 80px; dialogLeft: 80px; edge: Raised; center: Yes; help: No; scroll:No; resizable: No; status: No;");
                }
                
                function OpenModalDialog2(url2,diaHeight2,diaWidth2)
                {
                window.open(url2,"myWindow","height="+ diaHeight2 +"px; width= "+diaWidth2+"px; Top= 100px; Left= 200px; center= Yes; help= No; scroll=auto; resizable= No; status= No;");
                }
