var texto_imp;
texto_imp="resultado_imp.php";
function redirect(x,d,f)
{
	temporal=temp_cbProducto;
	temporal.style.display='block';
	
	for (m=temporal.options.length-1;m>0;m--)
		temporal.options[m]=null
	x=document.buscador.cbRubro[document.buscador.cbRubro.selectedIndex].value;
	for (i=0;i<group[x].length;i++)
	{
		temporal.options[i]=new Option(group[eval(x)][i].text,group[eval(x)][i].value)
	}
	
	temporal.options[d].selected=true;
	
}
function fncCambiaUrlIframe(name,url)
{
	//frames[name].location.href=url;
	document.getElementById(name).src=url; 

}

function fncLimpiaIframe()
{
	 texto_url="blanco.php";
	 fncCambiaUrlIframe("resultado_1",texto_url);
	 document.getElementById("resultado_1").style.display='none';
	 fncCambiaUrlIframe("resultado_impresion",texto_url);
}

function fncImprimeResultado()
{
	 fncCambiaUrlIframe("resultado_impresion",texto_imp); 
}

function fncBusquedaIframe(idPais,idArea,idRubro,idProducto)
{
	texto_url="resultado.php?idPais=" + idPais + "&idArea="+ idArea + "&idRubro="+ idRubro + "&idProducto="+ idProducto;
	texto_imp="resultado_imp.php?idPais=" + idPais + "&idArea="+ idArea + "&idRubro="+ idRubro + "&idProducto="+ idProducto;
	
	if (document.getElementById("resultado_1").style.display=='none')
	{	
		document.getElementById("resultado_0").style.display='none';
		document.getElementById("resultado_1").style.display='block';
		url_limpieza="blanco.php?";
		fncCambiaUrlIframe('resultado_1',url_limpieza);
		document.getElementById("resultado_1").style.display='block';
	 	fncCambiaUrlIframe("resultado_1",texto_url);
	}
	else
	{
		fncCambiaUrlIframe("resultado_1",texto_url);
		document.getElementById("resultado_0").style.display='none';
	}
}

function fncPais(objeto)
{
	if(objeto[objeto.options.selectedIndex].value!='0') 
	{
		document.buscador.cbRubro.selectedIndex=0;
		document.buscador.cbRubro.style.display='block';
		document.buscador.cbProducto.style.display='none';
		document.getElementById("buscador_listado").style.display='block';
		document.getElementById("resultado_0").style.display='block';
		//document.getElementById("contiene_iframe").style.display='none';
		fncLimpiaIframe();
	}
}

function fncRubro(objeto)
{
	if(objeto[objeto.options.selectedIndex].value!='-1') 
	{
		redirect(objeto.options.selectedIndex,0,0);
		document.buscador.cbProducto.style.display='block';
		document.buscador.cbProducto.selectedIndex=0;
		document.getElementById("resultado_0").style.display='block';
		fncLimpiaIframe();
		
	}
	else
	{
		document.buscador.cbProducto.style.display='none';
		document.getElementById("resultado_0").style.display='block';
		fncLimpiaIframe();
	}
}

function fncBusqueda()
{
	
		if (document.buscador.cbProducto.selectedIndex==0)
		{
			document.getElementById("resultado_0").style.display='block';
			//document.getElementById("contiene_iframe").style.display='none';
			//document.getElementById("resultado_1").style.display='none';
			fncLimpiaIframe();
		}
		else
		{
			valorRegion=document.buscador.select[document.buscador.select.selectedIndex].value;
			arrValor=valorRegion.split("|");
			
			if(arrValor[1]=='A')
			{
				idArea=arrValor[0];
				idPais=-1;
			}
			else
			{
				idPais=arrValor[0];
				idArea=-1;
			}
			
			idRubro=document.buscador.cbRubro[document.buscador.cbRubro.selectedIndex].value;
			idProducto=document.buscador.cbProducto[document.buscador.cbProducto.selectedIndex].value;
			fncBusquedaIframe(idPais,idArea,idRubro,idProducto);
		}
}

function fncVerFicha(id)
{
	texto_url="detalle_ficha.php?idSitio=" + id;
	muestra_ficha('0')
	fncCambiaUrlIframe("frameFicha",texto_url);
}