//<![CDATA[
/* ====================================================================================== * 
 * Project : JavaScript 共通処理
 * File    : common.js
 * Author  : System House ACT
 * History : 1.00.00 初版 ($Rev: 11 $)
 *           $Date:: 2008-12-28 18:26:43 #$ $Author: tyamaguchi $
 *
 * Copyright 2008-2011 System House ACT All rights reserved.
 * ====================================================================================== *
 */

/* ====================================================================================== *
 * onloadイベント関数
 * ====================================================================================== *
 */
window.onload = function() {
  var twitterTitle = encodeURIComponent(document.title);
  var twitterTag   = encodeURIComponent(SystemHouseACTjsLib.GetTwitterTag());

  var objElement = document.getElementById("TwitterLink");
  if (objElement != null) {
    objElement.href = SystemHouseACTjsLib.twitterUrl + '?status=%2e%40'
                    + SystemHouseACTjsLib.twitterId  + '+' + twitterTitle + twitterTag;
  }
};
//]]>
