<!--
//disable the right mouse click on ALL browsers
document.oncontextmenu=new Function("return false");

// prevents drag and drop of page images (but not selection of text)

// IE  
document.ondragstart = function(e) {  
return false;  
}  

// Mozilla/Firefox  
document.onmousedown = function(e) {  

if (e && e.preventDefault) {  
var t = e.target;  
var nName = t.nodeName.toLowerCase();  

if (nName == "img") {  
e.preventDefault();  
return false;  
}

t = t.parentNode;  
}  
}

// -->
			
