var popup="Right-Click not possible here. Please contact Fog City Journal if you wish to license photos or stories. Thank You!"; 
function nope(go) { 
if (document.all) { 
if (event.button == 2) { 
alert(popup); 
return false; 
} 
} 
if (document.layers) { 
if (go.which == 3) { 
alert(popup); 
return false; 
} 
} 
} 
if (document.layers) { 
document.captureEvents(Event.mousedown); 
} 
document.onmousedown=nope; 