function popUp(url, name, w, h)
{
	win = window.open(url, name,'location=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes,width='+w+',height='+h+',screenX=10,screenY=10,top=10,left=10');
	win.focus();
}