var url = "http://www.focus.fr/uk/";
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){
	
	w= new String(eval('document.'+ n + '.Keywords.value'));
	
		if(w.length>1) {
			eval('document.'+ n + '.action="/uk/q.asp"');
			eval('document.'+ n + '.submit()');
		}
		else {
			alert('merci de renseigner un des champs');
		}


}
function setStatus(t) {
	if (t==''){t='www.focus.fr/uk/';}
	window.status=t;
	}
