function delayOpenDocument() { for (var i=0; i<50; i++) { } } function getImageSource() { delayOpenDocument(); return document.forms[0].elements["imgsrc"].value; } function openDirPopUp(name) { var dir = 'Dir/'; var ext = ''; var pagename = dir + name + ext; var width = 424; var height = 349; var scrollbars = "no"; var resizable = "no"; var winOptions = 'width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',resizable=' + resizable; popupWin = window.open('','POPUP',winOptions); popupWin.document.location=pagename; popupWin.focus(); } function openPopUp(pagename) { var width = 399; var height = 299; var scrollbars = "no"; var resizable = "no"; var winOptions = 'width=' + width + ',height=' + height + ',scrollbars=' + scrollbars + ',resizable=' + resizable; popupWin = window.open('','POPUP',winOptions); popupWin.document.location=pagename; popupWin.focus(); }