function popup (w_name)
{
	w_left = (screen.width - 502)/2;
	w_top = (screen.height - 602)/2;

	return window.open(w_name,'Title','resizable=no,menubar=no,toolbar=no,width=502,height=602,top='+w_top+',left='+w_left);
}

