function open_window(path,windowName,msg){var newWindow = window.open("","","alwaysRaised=yes,toolbar=no,width=350,height=350,status=no,scrollbars=yes,resizable=yes,menubar=no,Left=350,top=30");newWindow.document.write("<HTML><HEAD><TITLE>JEDC</TITLE></HEAD>");newWindow.document.write("<BODY BGCOLOR=FFFFFF><H4>" + msg + "</H4>");newWindow.document.write(unescape('<object type="application/x-shockwave-flash" width="300" height="250" wmode="transparent" data="flvplayer.swf?file=' + path + '&autoStart=true">'));newWindow.document.write(unescape('<param name="movie" value="flvplayer.swf?file=' + path + '&autoStart=true" />'));newWindow.document.write(unescape('<param name="wmode" value="transparent" /></object>'));newWindow.document.close();newWindow.focus();}