<!--
function share_click(obj) 
{
  var obj;  

  if (!obj) {
    return true;
  }  

  var url = obj.getAttribute('href');  
  if (!url) {
    return true;
  }

  var u = location.href;
  var t = document.title;
 
  var p_w = 626; 
  var p_h = 436;
 
  var p_t = 0; 
  var p_l = 0; 

  // wx
  var wx = 0;
  if (window.innerWidth) { 
    wx = window.innerWidth; 
  } 
  else if (document.documentElement && document.documentElement.clientWidth) { 
    wx = document.documentElement.clientWidth; 
  } 
  else if (document.body && document.body.clientWidth) { 
    wx = document.body.clientWidth; 
  }
  // wy
  var wy = 0;
  if (window.innerHeight) { 
    wy = window.innerHeight; 
  } 
  else if (document.documentElement && document.documentElement.clientHeight) { 
    wy = document.documentElement.clientHeight; 
  } 
  else if (document.body && document.body.clientHeight) { 
    wy = document.body.clientHeight; 
  }  
  
  wx = wx*1;  
  wy = wy*1;  

  p_l = (wx / 2) - (p_w / 2);
  p_t = (wy / 2) - (p_h / 2);
  
  window.open(url, 'sharer' , 'toolbar=0,status=0,top=' + p_t + ',left=' + p_l + ',width=' + p_w + ',height=' + p_h);
  
  return false;
}
// -->
