function GetXmlHttpObject(){
var xmlhttp=false;
try{
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
	try{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 	}catch(E){
		xmlhttp = false;
	}
}
if(!xmlhttp && typeof XMLHttpRequest!='undefined'){
	xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function Valida(elform,elvalor){

   for (i=0;elform.tipo.length;i++){
       if (elform.tipo[i].checked)
          break;
   } 
  var seleccion = elform.tipo[i].value;
  if(seleccion == 'amarillas') {
			elform.action = 'http://www.boliviaentusmanos.com/amarillas/search/';
			elform.submit();
		} else if (seleccion == 'noticias') {
			elform.action = 'http://www.boliviaentusmanos.com/noticias/bolivia/resultados.php';
			
			elform.submit();
		} else if (seleccion == 'internet') {
		    elform.q.value = elform.query.value
			elform.action = 'http://www.boliviaentusmanos.com/resultados.php';
			elform.submit();
		}
		
}
function GraficaFinanzas(tipoImagen){
  var strImagenArchivo = "imgportada/graficas/";
  var imagenGrafica = document.getElementById('grafica');
  imagenGrafica.src=strImagenArchivo+tipoImagen;
}
function Fontbold(lbl) {
	var elabel = document.getElementById('Buscar');
	var buscs = elabel.getElementsByTagName('label');
	for (j=0; j<buscs.length; j++) {
		buscs[j].style.fontWeight = 'normal';
		}
	document.getElementById(lbl).style.fontWeight = 'bold';
}
