﻿var iWebAlbumPhotos = [{"caption": "Copyright", "url": "c5d9146a044e4bc2b3f83546bed28a12.jpg", "comment": "Photograph Your World"},{"caption": "Copyright", "url": "d134f9cf6fe245eab64b48914030a3d2.jpg", "comment": "Photograph Your World"},{"caption": "Copyright", "url": "1b6a1b395a074a479c574b1c9295eba4.jpg", "comment": "Photograph Your World"},{"caption": "Copyright", "url": "4400917187a64b63ba9fa4325897390b.jpg", "comment": "Photograph Your World"},{"caption": "Copyright", "url": "060f6681709143ea8d98dec052e685d7.jpg", "comment": "Photograph Your World"},{"caption": "Copyright", "url": "517af93343c64f8ebf2a2a16a9a1f600.jpg", "comment": "Photograph Your World"}];

var message="Right Click Function Disabled! Copyright - Photograph Your World";

function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")
