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

