var ESPERA_AVISOS = 3000;
var IE = document.all?true:false;

function abrir(v){
	ancho = (arguments[1]!=null)?arguments[1]:(winwidth-200);
	alto = (arguments[2]!=null)?arguments[2]:(winheight-200);
	nombre = (arguments[3]!=null)?arguments[3]:"";
	arriba = (winheight - alto)/2;
	izq = (winwidth - ancho)/2;
	window.open(v,nombre,"toolbar=false,left="+izq+",top="+arriba+",width="+ancho+",height="+alto+",menu=false,scrollbars=auto");
}

function esperaNavegacion(url){
	setTimeout("window.location.href='"+url+"'",ESPERA_AVISOS);
}

function seleccionaTodosCheckbox(cb){
	var f = document.getElementById("formDatos");
	var actual;

	for (var i = 0; i < f.elements.length; i++) {
		actual = f.elements[i];
		if(actual.type == 'checkbox'){
			if(cb.checked)
				actual.checked = true;
			else
				actual.checked = false;
		}
	}
}

/*
$(function(){
	popupInit('#registro');
	$('#menu ul').append('<li><a href="#" id="enlaceAcceso" title="Acceso Usuarios">Acceso Usuarios</a></li>')
	$('#enlaceAcceso').click(function(event){
		mostrarPopup();
		event.preventDefault();
	});
});
*/