function open_indicators(path,windowName,msg){var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=850,height=800,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=50,top=30");newWindow.document.write("<HTML><HEAD><TITLE>JEDC Indicators</TITLE></HEAD>");newWindow.document.write("<BODY BGCOLOR=FFFFFF><H4 style=\"color:white\">" + msg + "</H4>");newWindow.document.write(unescape('<img src="/images/jedclogo.jpg"><br>'));newWindow.document.write(unescape('<img src=' + path + '>'));newWindow.document.write(unescape('<style type="text/css">@media print {input#btnPrint {display: none;}}</style>'));newWindow.document.write(unescape('<input type="button" id="btnPrint" onclick="window.print();" value="Print this Page" />'));newWindow.document.close();newWindow.focus();}