function PopWindow(url,width,height)
{
	url=url;
	width=width||400;
	height=height||300;
	window.open(url,"",'"width='+width+',height='+height+',resizable=yes,status=no,scrolling=auto,location=no"');
}
