function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length+1 ,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}


function getel(el) { 
	return document.getElementById(el);
}

function getval(el) { 
	return getel(el).value;
}
function masquer(el) { 
	return getel(el).style.display='none';
}

function afficher(el) { 
	return getel(el).style.display='';
}

function afficher_produit(prod){ 
	masquer('tab_def');masquer('tab_saeco');masquer('tab_satro');masquer('tab_goges');masquer('tab_flo');masquer('tab_water');
	getel('img_saeco').src = 'images/saeco.png' ; 
        getel('img_satro').src = 'images/satro.png' ;
	getel('img_goges').src = 'images/goges.png' ; 
        getel('img_flo').src = 'images/flo.png' ;
        getel('img_water').src = 'images/water.png' ;
	 
	afficher('tab_'+prod);
	getel('img_'+prod).src = 'images/'+prod+'_hover.png';

}

function valid_contact(){  
	var mail = /^[\w\-]+(\.[\w\-]+)*@[\w\-]+(\.[\w\-]+)*\.[\w\-]{2,3}$/;
	
	if(getval('nom')=='' ) {alert('Indiquer votre nom'); return false; }
	if(getval('prenom')=='' ) {alert('Indiquer votre pr\351nom'); return false; }
	if(getval('tel')=='' ) {alert('Indiquer votre t\351l\351phone'); return false; }
	if(!mail.test(getval('email'))){alert('Veuillez v\351rifier votre email');return false;}
	
	
	if(getval('sujet')=='' ) {alert('Indiquer votre sujet de contact'); return false; }
	if(getval('message')=='' ) {alert('Remplir votre message'); return false; }

	
}
