function Abre(url, width, height)
	{						
	window.open(url,"_blank","resizable=no,toolbar=no,status=no,top=" + (window.screen.height - height)/2 + ",left=" + (window.screen.width - width)/2 + ",menubar=no,scrollbars=yes,width=" + width + ",height=" + height);
	}

