function abreventana(nombre,url,ancho,alto)
{
	var x=0;
	var y=0;
	x=(screen.width/2)-(ancho/2);
	y=(screen.height/2)-(alto/2);
	window.open(url,"ventana"+nombre,"left="+x+",top="+y+",resizable=no,location=0,menubar=0,toolbar=0,personalbar=0,status=0,scrollbars=0,width="+ancho+",height="+alto);
}