document.domain='club-shop.ru';
scp = null;
try {
  scp = window.parent.document.getElementById('club_shop_place');
  if (scp && !isIE()) {  
    scp.style.overflowY = 'hidden'; 
  }
}
catch(e) {}

function initShop() {
  if (scp) {
    scp.style.height = (document.body.clientHeight + 50) + 'px';
  }
}

function isIE() {
  return /msie/i.test(navigator.userAgent) && !/opera/i.test(navigator.userAgent);
}

function to_utf8(str) {
  str = escape(str);
  str = str.replace(/%/g, '\\');
  return str; 
  
  var uni = "";
  for (var i=0; i<str.length; i++) {
    uni += '&#'+str.charCodeAt(i)+';';
  }
  return uni;
}