// JavaScript Document

function popup(url,ancho,largo,barras){

	var r_ancho=screen.width;

	var r_largo=screen.height;

	var top=(r_largo/2)-(largo/2);

	var left=(r_ancho/2)-(ancho/2);

	var opciones="toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+barras+",resizable=no,width="+ancho+",height="+largo+",top="+top+"+,left="+left;

window.open(url,"",opciones);

}

