function pop(u, w, h) {
	l = (screen.width - w) / 2;
	t = (screen.height - h) / 2;
	p = "scrollbars = no, width = " + w + ", height = " + h + ", top = " + t + ", left = " + l;
	n = window.open(u, "_blank", p);
	
	if (window.focus) n.focus();
	
	return;
}