var windowW=600 // wide var windowH=675 // high // set the screen position where the popup should appear var windowX = 260 // from left var windowY = 100 // from top // set the url of the page to show in the popup var urlguarantee = "http://www.debtmerica.com/images_new/guarantee-certificate.jpg" // set the title of the page var title = "Debtmerica LLC Guarantee" // set this to true if the popup should close // upon leaving the launching page; else, false var autoclose = true // ============================ // do not edit below this line // ============================ s = "width="+windowW+",height="+windowH; var beIE = document.all?true:false function openGuaranteeCert(){ if (beIE){ NFW = window.open("","popFrameless","fullscreen,"+s) NFW.blur() window.focus() NFW.resizeTo(windowW,windowH) NFW.moveTo(windowX,windowY) var frameString=""+ ""+ ""+ ""+title+""+ ""+ ""+ ""+ ""+ ""+ "" NFW.document.open(); NFW.document.write(frameString) NFW.document.close() } else { NFW=window.open(urlguarantee,"popFrameless","scrollbars,"+s) NFW.blur() window.focus() NFW.resizeTo(windowW,windowH) NFW.moveTo(windowX,windowY) } NFW.focus() if (autoclose){ window.onunload = function(){NFW.close()} } }