// JavaScript Document



/*
Disable right click script II (on images)- By Dynamicdrive.com
For full source, Terms of service, and 100s DTHML scripts
Visit http://www.dynamicdrive.com
*/

var clickmessage="All Photographs and Images are Copyright &copy; Frontline International Photography and are not to be copied or reproduced in any form without express permission from Frontline International Photography directors. All photography and digital images created from photographs on this website are protected by International and National Copyright laws. We will assert our rights as Copyright holders and we will seek and pursue in Court any offenders if infringement of our Copyright is believed to have occurred"

function disableclick(e) {
if (document.all) {
if (event.button==2||event.button==3) {
if (event.srcElement.tagName=="IMG"){
alert(clickmessage);
return false;
}
}
}
else if (document.layers) {
if (e.which == 3) {
alert(clickmessage);
return false;
}
}
else if (document.getElementById){
if (e.which==3&&e.target.tagName=="IMG"){
alert(clickmessage)
return false
}
}
}

function associateimages(){
for(i=0;i<document.images.length;i++)
document.images[i].onmousedown=disableclick;
}

if (document.all||document.getElementById)
document.onmousedown=disableclick
else if (document.layers)
associateimages()
