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