//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com
//<script type="text/javascript" language="JavaScript" src="noright.js"></script> Put within Head Tag

var message="                        ***Warning***\n                       ***Do Not Use Illegally Copied Artwork***\nWrong calligraphy characters have been added to the samples on our website on purpose.\nThe Correct Calligraphy will be provided only when purchased.\nGreen Dragon Arts is not liable for wrong tatto Artwork that was pirated or used without our permission.\n  \nAll content on this site is Copyright (c)1994-2010 Green Dragon Arts.  All rights reserved.\nImages are not licensed for any use other than personal viewing on this site.";

///////////////////////////////////
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")

