function  ProductCopyrightProtectionHide()
{
  var LdvCopyrightProtection = ElementGet('dvCopyrightProtection');
  if (LdvCopyrightProtection)
  {
    LdvCopyrightProtection.style.display = 'none';
  }
}

function  ProductCopyrightProtectionPositionAdjust()
{
  var LdvCopyrightProtection = ElementGet('dvCopyrightProtection');
  var LdvCopyrightProtectionLink = ElementGet('dvCopyrightProtectionLink');
  var LdvMain = ElementGet('dvMain');

  LdvCopyrightProtection.style.display = 'block';
  LdvCopyrightProtection.style.top = ElementAbsTopGet(LdvCopyrightProtectionLink) - LdvCopyrightProtection.offsetHeight - ((LdvMain) ? ElementAbsTopGet(LdvMain) : 0) - 4;
  LdvCopyrightProtection.style.left = ElementAbsLeftGet(LdvCopyrightProtectionLink) + (LdvCopyrightProtectionLink.offsetWidth - LdvCopyrightProtection.offsetWidth) / 2;
}

var ProductCopyrightProtectionAJAX;

function  ProductCopyrightProtectionShow()
{
  var LdvCopyrightProtectionContent = ElementGet('dvCopyrightProtectionContent');

  if (LdvCopyrightProtectionContent.innerHTML == '')
  {
    if (!ProductCopyrightProtectionAJAX)
      ProductCopyrightProtectionAJAX = new cAJAX(true);

    LdvCopyrightProtectionContent.innerHTML = '<b color="#888888"><i>Loading...</i></b>';
    ProductCopyrightProtectionAJAX.onComplete = [window, 'ProductCopyrightProtectionLoad'];
    ProductCopyrightProtectionAJAX.get(WSA_URLGet(SPM_ProductCopyrightProtection));
  }
  ProductCopyrightProtectionPositionAdjust();
}

function ProductCopyrightProtectionLoad(ATransport)
{
  var LdvCopyrightProtectionContent = ElementGet('dvCopyrightProtectionContent');

  LdvCopyrightProtectionContent.innerHTML = ATransport.responseText;
  ProductCopyrightProtectionPositionAdjust();
}
