
<!--
var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
var isFF = (navigator.userAgent.indexOf("FireFox") != -1) ? true : false;
var isChrome = (navigator.userAgent.indexOf("Chrome/") != -1) ? true : false;
var message="Permission must be obtained to use content from this website.\n\n Please contact info@ebisprint.com for further information.";
function click(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 (isOpera)
  {
    alert("Ouch - don't do that!");
  }
}

if (document.all) // for IE
{
	document.onmousedown=click;
}
else // for FF
{
	document.onclick=click;
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}

// -->

