function confirmLink( link )
{
  re = /^http:\/\/[^\.]+.gamer.com.tw/;
  if( link.match(re) ){
    window.open( link, "_blank", "menubar=1,status=1,location=1,scrollbars=1,resizable=1" );
  }
  else if( confirm( "您即將開啟下列連結，確定嗎?\n\n" + link +"\n\n(巴哈姆特提醒您，不明連結可能包含木馬程式)" ) )
  {
    window.open( link, "_blank", "menubar=1,status=1,location=1,scrollbars=1,resizable=1" );
  }
}

function sub(txt, len) {
  len = (len) ? len : 200;
  if( txt.length > len ) {
    txt = txt.substr(0,len);
  }

  if( '' == txt || '　' == txt || txt.length <= 0 ) {
    txt = '沒有內容';
  }

  return txt;
}
