function fnPOP(URL, winW, winH, toggle){
	var w = winW;
	var h = winH;
	var x = screen.width / 2;
	var y = screen.height / 2;
	var l = x - (w / 2);
	var t = y - (h / 2);
	window.open(URL,"callme","scrollbars=" + toggle + ",status=no,resizable=no,copyhistory=no,menubar=no,toolbar=no,location=no,width=" + w + ",height=" + h + ",left=" + l + ",top=" + t)
}

window.onresize = fnResize
function fnResize(){
	//alert("resized");
	window.location.reload();
}
