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