/*
var afficheFicheProduits = function(event){
	var urlDoc = this.value;
	document.location = __contextPath+urlDoc;
	//document.location = __contextPath+"/documentArticle.do?idDoc=" + docId + "&siteId="+__idSiteProduits;
};*/

var afficheFicheProduits = function(event){
	var docId = this.value;
	document.location = __contextPath+"/documentArticle.do?idDoc=" + docId;
	//document.location = __contextPath+"/documentArticle.do?idDoc=" + docId + "&siteId="+__idSiteProduits;
};

var afficheLieux = function(event){
	var channelId = this.value;
	//-2 correspond � la valeur de "Tous les lieux"
	if(channelId == -2){
		document.location = __contextPath+"/summary.do?channelName=" + __lieuxRootChannel+"&rec=2";
	}else{
		document.location = __contextPath+"/critere.do?channelId=" + channelId;
	}
};

var afficheLoisirs = function(event){
	var channelId = this.value;
	//-2 correspond � la valeur de "Tous les loisirs"
	if(channelId == -2){
		document.location = __contextPath+"/summary.do?channelName="+__loisirsRootChannel+"&rec=1";
	}else{
	    document.location = __contextPath+"/critere.do?channelId=" + channelId;
	}
};

var chargeEvent = function(){
	if ($('ipSProd')) {
		Event.observe($('ipSProd'), "change", afficheFicheProduits.bindAsEventListener($('ipSProd')), false);
	}
	if ($('ipSHobby')) {
		Event.observe($('ipSHobby'), "change", afficheLoisirs.bindAsEventListener($('ipSHobby')), false);
	}
	if ($('ipSPlace')) {
		Event.observe($('ipSPlace'), "change", afficheLieux.bindAsEventListener($('ipSPlace')), false);
	}
};

Event.observe(window,"load",chargeEvent,false);