// JavaScript Document
//Désactive selection texte
/*
function disableselect(e)
{	return false;
}

function reEnable()
{	return true;
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar)
{	document.onmousedown=disableselect;
	document.onclick=reEnable;
}

//end Désactive selection texte
*/

//click droit
/*
var msgClickRight='website by eMAGIN 2006 © All rights reserved';
function click_ie() 
{	// Fonction de détection pour Internet Explorer
	if ((event.button==2)||(event.button==3)) 
	{	alert(msgClickRight);		
	}
}
function click_ns(e)
{	// Fonction pour Netscape
	if(e.which==3)
	{	alert(msgClickRight);
		return false;
	}
}

if (document.all)	document.onmousedown=click_ie;
else if (document.layers)
{	document.captureEvents(Event.MOUSEDOWN); 
	document.onmousedown = click_ns;
}
else if (window.sidebar)
{	document.captureEvents(Event.MOUSEDOWN); 
	document.onmousedown = click_ns;
}
//end click droit
*/
//open page without frame
/*
if (window!=top) 
{	top.location=window.location;
}	*/
