//V .02
function abre(url, ancho, alto, scrollbar, resizable, nombre)
{
	resizable = resizable || 0;
	scrollbar = scrollbar || 0;
	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);
}
