// JavaScript Document
function form_recherche(formname){
	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://capinfo5.ecritel.net/batiactu.com/recherche.php";
		document.forms[formname].elements['CAT'].value='ARTICLE-ANNUAIRE';
		document.forms[formname].elements['C'].value=134;
	}
	else if(type_recherche=="EMPLOI"){
		document.forms[formname].action="http://www.batiactuemploi.com/offre-emploi-recherche.php";
	}
	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;
	
	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;
}
