/*
* BUSCADOR
*
* Manejo de Javascript para los resultados
*
*/

//=========================================================================================
//	CAMBIAR EL ESTADO DEL SELECT: principal[id_nodo]
//=========================================================================================

// Esta variable es para recordar el item seleccionado y poder regresar a lo que el usuario 
// selecciono antes de indicar la busqueda por artista.
var TMP_item_seleccionado = null;

function change_idNodo(valor){
	
	if(valor=='art'){
		TMP_item_seleccionado = document.getElementById('id_nodo').selectedIndex;
		document.getElementById('id_nodo')[0].selected=true
		document.getElementById('id_nodo').disabled	= true;
		
	}else{
		document.getElementById('id_nodo').disabled	= false;
		if(TMP_item_seleccionado!=null) document.getElementById('id_nodo')[TMP_item_seleccionado].selected=true
		
	}
}

//=========================================================================================
//	LLAMADO DE BUSQUEDA
//=========================================================================================


function buscadorContenidos()
{
	//FWK.debug=true;
	FWK.postAppInto('content','buscadorcontenidos|principal|principal|principal','buscador_form','&principal[pag]=1&');
	if(typeof cambiarAnchor != "undefined") {
		var oObject = document.getElementById("principal[id_nodo]");
		if (oObject && oObject.value) {
			//var sRelleno = oObject.value + _anchorSeparador + oObject.options[oObject.selectedIndex].text;						
			var sRelleno =  oObject.options[oObject.selectedIndex].text + _anchorSeparador + oObject.value;
		}
		cambiarAnchor("buscador",document.getElementById("buscar").value,sRelleno);
	}
}


function buscadorContenidosCinta(tipo)
{
//FWK.debug=true;
//id_tipo = 2 siempre llama a videos
var id_nodo=document.buscadorcinta_form.id_nodo.options[top.principal.document.buscadorcinta_form.id_nodo.selectedIndex].value;
var nombre_nodo=document.buscadorcinta_form.id_nodo.options[top.principal.document.buscadorcinta_form.id_nodo.selectedIndex].text;
if (typeof tipo=="undefined"){
	tipo=2;
}

eval(FWK.loadApi('buscadorcontenidos',document.buscadorcinta_form.buscar.value,'&tipovista=cinta&id_tipo='+tipo+'&'+ ((id_nodo)?'id_nodo='+id_nodo:'')));
 pathLinkCarpetaBusqueda(document.buscadorcinta_form.buscar.value + ((nombre_nodo)?" ("+ nombre_nodo + ")":""));
}

function pagGoto(event,modulo,pag,request)
{
	//alert("modulo="+modulo+"\npagina="+pag+"\nrequest="+request);
	FWK.loadAppInto('content',modulo,'&principal[pag]='+pag+'&'+request);
	//--cancelacion de evento---------
	if(!document.all) {	event.stopPropagation(); event.preventDefault(); }
	event.cancelBubble=true; event.returnValue=false; //cierre, deshabilito el A ------
	return false;
}

