Hi..
I am running with this problem through out the day...
my javascript code..
<script language="javascript">
document.onmousedown=disableclick;
var status="Right Click Disabled";
function disableclick(event)
{
if(event.button==2)
{
alert(status);
return false;
}
}
</script>
if I click on this page I always getting this error.. What could be the reason??



