function Combo_Enlace (form_selector_deteccion_seleccion){
	document.location.href=form_selector_deteccion_seleccion.combo.options[form_selector_deteccion_seleccion.combo.selectedIndex].value;
}//Combo_Enlace


function deteccion_seleccion() {

		var ruta = top.location.pathname;
		var posicion = ruta.search('op%2B');

		if(posicion == -1){
			document.getElementById("direccion")[0].selected=true;
		}
		else{
			var opcion = parseInt(ruta.substring(posicion + 5, posicion + 6));
			document.getElementById("direccion")[opcion-1].selected=true;
		}

}//deteccion_seleccion

