﻿// JScript File


function doProtect()
{
  var el = document.getElementById("BBBSeal");
  el.oncontextmenu = showProtect;
  //document.getElementById("BBBSeal").attributes.add("oncontextmenu", "alert('Use without permission is prohibited.  The BBB Accredited Business seal is a trademark of the Council of Better Business Bureaus, Inc.'); return false;");
  //document.getElementById("BBBSeal").oncontextmenu = "alert('Use without permission is prohibited.  The BBB Accredited Business seal is a trademark of the Council of Better Business Bureaus, Inc.'); return false;";
}

function showProtect()
{
    alert('Use without permission is prohibited.  The BBB Accredited Business seal is a trademark of the Council of Better Business Bureaus, Inc.'); return false;
}
