    function retrieveData(id)
    {
		document.getElementById(id).innerHTML = "<img src='/interface/imgs/loading.gif' width=80 height=10 border=0>";
		document.getElementById("bridgeFrame").src = "/catalogo/getinfo.php?id=" + id;
		document.getElementById("cube"+id).innerHTML = "<a href='javascript: fecha(" + id + ");'><img src='/interface/imgs/iminus.gif' border=0></a>";
    }
	function iframeCallback(doc,id)
    {
		//alert("teset " + id);
		myData = doc.getElementById("mydata");
        document.getElementById(id).innerHTML = myData.innerHTML;
	}
	function fecha(id)
	{
		document.getElementById(id).innerHTML = "";
		document.getElementById("cube"+id).innerHTML = "<a href='javascript: retrieveData(" + id + ");'><img src='/interface/imgs/iplus.gif' border=0></a>";
	}

	function show_search()
    {
		//alert('assaassasas');//alert(id);
		document.getElementById("bridgeFrame").src = "../explorer/pesquisa_filter.php";
		//document.getElementById("searcher_icon").innerHTML = "Pesquisa <a href='javascript:hide_search();'><img src='/admin/interface/default/images/iminus.gif' border=0></a>";
    }
	function hide_search()
	{
		//alert('assaassasas');
		//document.getElementById('searcher').innerHTML = "";
		document.getElementById("searcher").innerHTML = "<a href='javascript:show_search();'><img src='/interface/imgs/iplus.gif' border=0></a> Pesquisa";
	}
	function iframeCallbackSearcher(doc,id)
    {
		//alert("teset " + id);
		myData = doc.getElementById("searcher");
        document.getElementById(id).innerHTML = myData.innerHTML;
	}
	
	function get_focusrow(rownum){
			document.getElementById(rownum).style.background='#ececec';
	}

	function lose_focusrow(rownum){
			document.getElementById(rownum).style.background = '';
	}