

function noway(go) 
{
	//var popup="Sorry, right-click is disabled.\n\nThis Site Copyright ©2000"; 
	if ((document.all))
	{ 
		if (event.button == 2) 
		{ 
			//alert(popup); 
			return false; 
		} 
	} 
	else if (document.layers) 
	{ 
		if (go.which == 3) 
		{ 
			//alert(popup); 
			return false; 
		} 
	} 
}; 

var message="Information on this page is (c) GMP Scotland Ltd.  No unauthorised copying to another website or publication is permitted without prior permission.";
function NoRC(e)
{
  if (document.all)
  {
    if (event.button==2||event.button==3)
    {
      alert(message);
      return false;
    }
  }
  else
  {
    if (e.button==2||e.button==3)
    {
      e.preventDefault();
      e.stopPropagation();
      alert(message);
      return false;
    }
  }
 
}

if (document.all) // for IE
{
  document.onmousedown=NoRC;
}
else // for FF
{
  document.onclick=NoRC;
}

if (document.layers) 
{ 
	document.captureEvents(Event.MOUSEDOWN); 
} 
//document.onmousedown = NoRC;

Event.observe(document, 'dom:loaded', function() { 
	var body = document.getElementsByTagName("body")[0];
	body.ondragstart=function(){return false;};
	body.onselectstart=function(){return false;};
 });
