function openWin(fileToOpen,nameOfWindow,width,height) { myWindow = window.open("",nameOfWindow,"menubar=no,scrollbars=yes,status=no,width="+width+",height="+height); myWindow.document.open(); myWindow.document.write(''); myWindow.document.write('Screenshot Viewer') myWindow.document.write(''); myWindow.document.write('Screenshot'); myWindow.document.write(''); myWindow.document.close(); } function deleteURL(text, url) { if (confirm(text)) { self.location = url; } }