function poner_thumbshot(archivo,web,nom)
	{
		document.getElementById('thumbshot').innerHTML='<a target="_blank" href="http://'+web+'"><img style="border:1px;border-color:#000000; border-style:solid" src="img/orig/'+archivo+'" /></a>';
		document.getElementById('empresa').innerHTML='<a target="_blank" href="http://'+nom+'">'+nom+'</a> -';
		document.getElementById('web').innerHTML='<a class="naranja" target="_blank" href="http://'+web+'">'+web+'</a>';
	}
function esconder_menus_excepto(id)
	{
		esconder('menu_qs');	
		esconder('menu_se');
		esconder('menu_tr');
	if (id=="menu_qs" || id=="menu_se" || id=="menu_tr")
		ver(id);
	}
function cambiar_clase(id,clase)
	{
		//document.getElementById(id).className=clase;
	}
function esconder(id)
	{  		 			
		 	document.getElementById(id).style.display="none";	
	}
function ver(id)	
	{
			document.getElementById(id).style.display="block";
	}

function GetXmlHttpObject()
{
var xmlHttp=null;
try  {  // Firefox, Opera 8.0+, Safari
  xmlHttp=new XMLHttpRequest();   } catch (e)  {   // Internet Explorer
  try    {    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
    }  catch (e)    {    xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");    } }
return xmlHttp;
}
