function actualizarEnlaces() {
	var ord_search = document.buscar.o;
	var orden = document.elegir.orden.value;
	
	var i, pos, a, url, fin_url, partes, nueva;
	for (i=0; i<document.anchors.length; i++) {
		a = document.anchors[i];
		url = a.href;
		
		pos = url.lastIndexOf("directory.php");
		if (pos < 0) {
			pos = url.lastIndexOf("directory");
			ini_url = url.substring(0, pos);
			fin_url = url.substring(pos);
			
			partes = fin_url.split("/");
			nueva = partes[0] + ".php?c=" + partes[1];
			if (partes.length > 3)
				nueva += "&sc=" + partes[2] + "&o=" + orden + "&p=" + partes[3];
			else
				nueva += "&o=" + orden + "&p=" + partes[2];
			
			a.href = ini_url + nueva;
		}
		else {
			a.href = url.replace(/o\=.*?&/, "o=" + orden + "&");
		}
	}
	ord_search.value = orden;
}

function enviarInvitacion(url) {
	var height = 500;
	var width = 780;
	var left = parseInt((screen.availWidth - width) / 2);
	var top = parseInt((screen.availHeight - height) / 2);
	var opciones = "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,";
	opciones += "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top;
	open(dominio + "send-invitation.php?ur=" + url, "", opciones);
}
