var message="Ajouter Aux Favoris ";
function favoris() {
if ( navigator.appName != 'Microsoft Internet Explorer' )
{ window.sidebar.addPanel("Lingerie sexy envoutante","http://www.envoutante.com",""); }
else { window.external.AddFavorite("http://www.envoutante.com","Lingerie sexy envoutante"); } }


///////  START DISABLING RIGHT CLICK  \\\\\\\\\\\\
var message="Copyrights: Propriete de envoutante.com";
function click(e)
{
if (document.all)
{
if (event.button==2||event.button==3)
{
alert(message);
return false;
}
}
else
{
if (e.button==2||e.button==3)
{
e.preventDefault();
e.stopPropagation();
alert(message);
return false;
}
}
}
if (document.all) // for IE
{
document.onmousedown=click;
}
else // for FF
{
document.onclick=click;
}
//if IE4+
document.onselectstart=new Function ("return false")
//if NS6
if (window.sidebar){
window.onmousedown=disableselect
document.onclick=reEnable
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
//////  END OF DISABLING RIGHT CLICK  \\\\\\\\\\\

