var TexteNewsletter='Votre e-mail';

function envoiAmi()
{
if (document.getElementById("Fond-Contenu-Milieu").style.display!='none')
	{
	document.getElementById("Fond-Contenu-Milieu").style.display='none';
	document.getElementById("Fond-Contenu-EnvoiAmi").style.display='block';
	document.getElementById("Onglet2").className='ON';
	}
else
	{
	document.getElementById("Fond-Contenu-Milieu").style.display='block';
	document.getElementById("Fond-Contenu-EnvoiAmi").style.display='none';
	document.getElementById("Onglet2").className='';
	}
return false;
}

function isEMail(c)
{
var reg = /^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,4}$/
return (reg.exec(c)!=null)
}

function checkEmailNewsletter(e)
{
if (!isEMail(e))
	{
	alert('Merci de saisir une adresse e-mail valide.');
	return false;
	}
else	return true;
}

function popupProduit(url,w,h)
{
w+=20;
h+=20;
p=window.open(url, 'Detail', 'width='+w+', height='+h+', toolbar=no, directories=no, location=no, status=yes, menubar=no, resizable=no, scrollbars=no')
p.moveTo((screen.width-w)/2, (screen.height-w-100)/2)
p.focus();
}

function displayMenu()
{
html='<object id="Menu" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="595" height="80" align="middle">';
html=html+'<param name="allowScriptAccess" value="sameDomain" />';
html=html+'<param name="movie" value="/Menu.swf" />';
html=html+'<param name="menu" value="false" />';
html=html+'<param name="quality" value="high" />';
html=html+'<param name="bgcolor" value="#000000" />';
html=html+'<embed src="/Menu.swf" quality="high" bgcolor="#000000" width="595" height="80" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
html=html+'</object>';

document.write(html);
}
