// JavaScript Document
function form_recherche(formname){
  
  if(formname=="form_recherche_tet_haut"){
    var s = "";
    for(var i=0;i<document.forms[formname].elements['TYPE_KEYWORD_TET'].length;i++){
      var btn = document.forms[formname].elements['TYPE_KEYWORD_TET'][i];
            
      if(btn.checked==true){
        type_recherche = btn.value;
      }
    }
  }
  else{
    type_recherche = document.forms[formname].elements['TYPE_KEYWORD_TET'].value;
  }
  	
	if(type_recherche=="PRODUITHEQUE"){
		document.forms[formname].action="http://produits.batiactu.com/recherche-libre.php";
		document.forms[formname].elements['CAT'].value='WEB-ANNUAIRE';
		document.forms[formname].elements['C'].value=134;
	}
	else if(type_recherche=="ARTICLE"){
		document.forms[formname].action="http://www.batiactu.com/recherche.php";
		document.forms[formname].elements['CAT'].value='ARTICLE-ANNUAIRE';
		document.forms[formname].elements['C'].value=9134;
	}
	else if(type_recherche=="EMPLOI"){
		document.forms[formname].action="http://www.batiactuemploi.com/offre-emploi-recherche.php";
	}
	else if(type_recherche=="AO"){
		document.forms[formname].action="http://marches.batiactu.com/appel-offre-recherche.php";
		document.forms[formname].elements['type_annonce'].value='AAPC';
		document.forms[formname].elements['valider'].value='Valider';
	}
	else if(type_recherche=="FORMATION"){
		document.forms[formname].action="http://formations.batiactu.com/offre-formation-recherche.php";
	}

	mot= document.forms[formname].elements['KEYWORD_TET'].value;
	
	if(mot=='Votre recherche' || mot=='') {
		window.alert('Veuillez entrer votre recherche. Merci.');
		return false;
	}
	else{
		
		document.forms[formname].elements['KEYWORDS'].value=mot;
		document.forms[formname].elements['mot_cle'].value=mot;
	
		//document.forms[formname].submit();
		return true;	
	}
	
	
}


function form_recherche_prod() {
	mot = document.getElementById('search_prod').value;
	document.location.href='http://produits.batiactu.com/recherche-libre.php?cat=WEB-ANNUAIRE&C=134&KEYWORDS='+mot;
}

function form_recherche_emploi() {
	mot = document.getElementById('search_emploi').value;
	document.location.href='http://www.batiactuemploi.com/offre-emploi-recherche.php?mot_cle='+mot;
}

function form_recherche_formation() {
	mot = document.getElementById('search_formation').value;
	document.location.href='http://formations.batiactu.com/offre-formation-recherche.php?mot_cle='+mot;
}

function form_recherche_marches() {
	mot = document.getElementById('search_marches').value;
	document.location.href='http://marches.batiactu.com/appel-offre-recherche.php?type_annonce=AAPC&valider=Valider&mots_cle='+mot;
}
