//prise en charge du focus par IE
function initfocus(){
	if (document.getElementById("inputrecherche")) {
		document.getElementById("inputrecherche").onfocus=colour;
		document.getElementById("inputrecherche").onblur=none;
	}
}
//Couleur du focus
function colour(event){
 this.style.backgroundColor='#F8E2DB';
 this.style.border='0';
 this.style.fontweight='normal';
 this.value='';
}
//Pas de couleur
function none(event){
 this.style.backgroundColor='#FFFFFF'; 
 this.style.border='0';
 this.style.fontweight='bold';
}
window.onload=initfocus;

//ouverture popup produits
function pop_prod(idprod) {
	popfen = window.open('produitpop.php?ref='+idprod, 'pop_prod', 'scrollbars=yes, width=610, height=400, left='+(screen.availWidth/2-305)+',top='+(screen.availHeight/2-200));
	//focus
	popfen.focus();
}
