var url = "http://fr.mongenie.com";
var ms = navigator.appVersion.indexOf("MSIE");
var ie5 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+7)) >= 5);

function set_as_homepage(othis){
  if(ie5){
    othis.style.behavior='url(#default#homepage)';
    othis.setHomePage(url);
  }else{
    alert("Désolé mais notre navigateur n'acepte pas cette fontion.");
  } 
  
}

function submit_search(n){
	var mkt ='fr' ;
	w= new String(eval('document.'+ n + '.Keywords.value'));
	
	radio= eval('document.' + n + '.market') ;
	
	 if(radio.length) {	
	     for (var i=0; i<radio.length;i++) {
	         if (radio[i].checked) {
	            mkt = radio[i].value ;
	         }
	      }
	}
	else {mkt = radio.value;}
	if (mkt=='') { mkt='fr';}
	site = 'http://' + mkt + '.mongenie.com';

		if(w.length>1) {
			eval('document.'+ n + '.action="' + site + '/search.asp"');
			eval('document.'+ n + '.submit()');
		}
		else {
			alert('merci de renseigner un des champs');
		}


}
function setStatus(t) {
	if (t==''){t='fr.mongenie.com';}
	window.status=t;
	}