// JavaScript Document
function popup(url, w, h)
{
	top = (screen.height-h)/2;
	left = (screen.width-w)/2;
	
	window.open(url, url, "menubar=no, width=" + w + ", height=" + h + ", toolbar=no, top=" + top + ", left=" + left);
}