
message = "Thank you for visiting the Malenka lab !";

function NoRightClick(b) {

   if (  ( (navigator.appName == "Microsoft Internet Explorer") && (event.button > 1) )  || ( (navigator.appName == "Netscape") && (b.which > 1) )  ) {

   alert(message);

   return false;

   }

}

document.onmousedown = NoRightClick;

if (parent.frames.length < 1) {

	document.location.href = 'http://malenkalab.stanford.edu';

}
