

function is_right_mouse(evt)
{
 return (evt.which==3);
}


function is_left_mouse(evt)
{
 return (evt.which==1);
}


