function openwindow(url,title)
{
	w_left = (screen.width - 500)/2;
	w_top = (screen.height - 625)/2;

	return window.open(url,title,'resizable=yes,menubar=no,toolbar=no,width=500,height=625,top='+w_top+',left='+w_left);	
}