//ROLLOVER
 function SetImg(img_name,file)
        {
                if(document.images)
					{
					document.images[img_name].src = file;
					}
        }
        
 
 //ouverture popup pour mailing
 
 function Newsletter_Submit()
 	{
 	var fenetre = window.open("", "fen","width=240,height=350,status=1,toolbar=0,location=0");
 	document.newsletter.target="fen";
 	return true;
	}
	
 //ouverture popup pour form de contact
 
 function Contact_Submit()
 	{
 	var fenetre = window.open("", "fen","width=350,height=200,status=1,toolbar=0,location=0");
 	document.form_contact.target="fen";
 	return true;
	}
