/*
function nosave(e) {
 if(((navigator.appName=="Microsoft Internet Explorer" )&&(event.button > 1)) ||((navigator.appName=="Netscape" )&&(e.which > 1)))
 {
  alert("Sorry, saving images is not supported.");
  return false;
 }
}
*/

function nosave() {
 if(navigator.appName=="Microsoft Internet Explorer" && event.button > 1)
 {
  alert("Sorry, saving images is not supported.");
  return false;
 }
}

