function disableselect(e){
return false
}
function reEnable(){
return true
}
if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{

document.onmousedown=disableselect
document.onmouseup=reEnable
}			
