// JavaScript Document
function popup(url,width,height)
{
	window.open(url,'','width='+width+',height='+height+',left='+((screen.width/2) - width/2)+',top='+((screen.height/2) - height/2));
	return false;
}