var clickmessage="Important Information: PLEASE READ CAREFULLY - SAFE AND SOUND BDSM authorises you to view the materials at this Web Site for the purposes of product familiarisation. Unauthorised viewing, copying or distribution of these materials along with use on any website or networked computer environment for any purpose is prohibited. The images and text along with any work depicted in such images at this website are copyrighted and any unauthorised use without written permission of the copyright owners may violate trademark, copyright, and other laws."
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.onmousedown=disableclick
else if (document.getElementById)
document.onmouseup=disableclick
else if (document.layers)
associateimages()
