function interdire() { return false; }
function bien() { return true; }
document.onselectstart = new Function("return false");
if(window.sidebar)
{
	document.onmousedown = interdire;
	document.onclick = bien;
}