function right(e) {
if ((navigator.appName == 'Netscape') &&
(e.which == 3 || e.which == 2))
{ alert("Copyright 2004 by Fujifilm Aust Pty Ltd.\r\nWARNING! All images and content contained within this site are protected by copyright laws.\r\nUnauthorized use of material is strictly prohibited.");
	return false; }

if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("Copyright 2004 by Fujifilm Aust Pty Ltd.\r\nWARNING! All images and content contained within this site are protected by copyright laws.\r\nUnauthorized use of material is strictly prohibited.");
	return false;
}
return true;
} 
 
function NS_rightup(e) {
	return false;
}


if (document.layers) 
{ window.captureEvents(Event.MOUSEDOWN);
  window.captureEvents(Event.MOUSEUP);
  window.onmousedown=right;
  window.onmouseup=NS_rightup;
   document.onmouseup=NS_rightup;
 } 
 else
 {
   document.onmousedown=right;
   document.onmouseup=right;
 }
		

