﻿function setImageWidth(obj){
  if (parseInt(obj.width) > 600){obj.width = 600;}
  var _pobj = obj.parentNode;
  if (_pobj.tagName.toLowerCase() != "a"){
    obj.style.cursor = "pointer";
    obj.onclick = function(){window.open(obj.src);}
  }
}

function setImageWH(obj,wh,ht){
  if (parseInt(obj.width) > wh){obj.width = wh;}
  if (parseInt(obj.height) > ht){obj.height = ht;}
  var _pobj = obj.parentNode;
  if (_pobj.tagName.toLowerCase() != "a"){
    obj.style.cursor = "pointer";
    obj.onclick = function(){window.open(obj.src);}
  }
}

function gettotal(controlId,gameId,typeId,cateId){
  Ajax.Updater($(controlId),'/rpc/ajax/webdatacount.aspx?gameid='+gameId+'&typeid='+typeId+'&catalogid='+cateId);
}

function copyToClipBoard(){
  var clipBoardContent="";
  clipBoardContent+=this.location.href;
  window.clipboardData.setData("Text",clipBoardContent);
  alert("复制成功，请粘贴到你的QQ/MSN上推荐给你的好友");
}
