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