
var windowW=340 // wide
var windowH=520 // high
var windowX = 260 // from left
var windowY = 100 // from top
var urlPop = "http://www.qpza.com/facebook.html"
var title =  "Connect with us on Facebook"
// 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;

function openFrameless() {


NFW = window.open(urlPop,"popFrameless","scrollbars,"+s);
NFW.blur();
window.focus();
NFW.resizeTo(windowW,windowH);
NFW.moveTo(windowX,windowY);

NFW.focus();
if (autoclose) {
window.onunload = function(){NFW.close();}
   }
}	
