function abre(url,nombre,ancho,alto) {
	xpos=(screen.width/2)-(ancho/2);
	ypos=(screen.height/2)-(alto/2);
	window.open(url,nombre,'resizable=yes,scrollbars=yes,width='+ancho+',height='+alto+',left='+xpos+',top='+ypos);
}