function ventana(url, ancho, alto, barras)
{
	var izquierda = (screen.availWidth - ancho) / 2;
    var arriba = (screen.availHeight - alto) / 2; 
	
	newwindow=window.open(url,'name','height='+alto+',width='+ancho+',scrollbars='+barras+',left='+izquierda+',top='+arriba+'');
	if (window.focus) {newwindow.focus()}
	return false;	
}