/*
 * Original:  CodeLifter.com (support@codelifter.com)
 * Web Site:  http://www.codelifter.com
 * This script and many more are available free online at
 * The JavaScript Source!! http://javascript.internet.com
 */
	var windowW=415 // wide
	var windowH=385 // high
	var windowX = 260 // from left
	var windowY = 30 // from top
	var urlPop = "useful/popup.html"
	var title =  "Subscribe Today!"
	// 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 openFrameless() {
		NFW = window.open(urlPop,"popFrameless","scrollbars=no,"+s);
		NFW.blur();
		window.focus();
		NFW.resizeTo(windowW,windowH);
		NFW.moveTo(windowX,windowY);
		NFW.focus();
		if (autoclose) {
			window.onunload = function(){
				NFW.close();
			}
		}
	}
