//1scrpt.js has miscellaneous scripts--Javascript1.2

var message="Copyright Mandarava";
start();

//script to inhibit right click on photos
function clickRT(){
if (event.button==2){
alert(message);
return false;
}
}

function clickRTx(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}