function getPop(x,y,z) {
	var i = Math.round((screen.width/2) - y);
	var j = Math.round((screen.height/2) - z);
	window.open(x,'popWindow','scrollbars=yes,resizable=yes,top='+j+',left='+i+',width='+y+',height='+z);
}