

function window_popup(ventana, nombre, ancho, alto, resi, barras){
	izqda = (screen.width - ancho)/2;
	ariba = (screen.height - alto)/2;
	window.open(ventana,nombre,'width='+ancho+',height='+alto+',left='+izqda+',top='+ariba+',resizable='+resi+',scrollbars='+barras+',status=no');
}