//---S - GLOBAL VARIABLES
var divlayer1 = "";
var divlayer2 = "";
//---X

//---S - no right click function
var norightclick="Copyrights 2007 Shreedhar Bhat's Laboratory"; 

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(norightclick);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(norightclick);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
//---X - no right click function
