function Headline(title, url, target)
{
   this.title = title;
   this.url = url;
   this.target = target;
}

var title1 = new Array();
title1[0] = new Headline('地址 : 台北市漢中街133號3樓&nbsp;&nbsp;&nbsp;電話 : (02)2314-9806&nbsp;&nbsp;&nbsp;傳真 : (02)2314-9807&nbsp;&nbsp;&nbsp;E-Mail : <u>cascade.taiwan@msa.hinet.net</u><br>加瑜國際移民顧問有限公司版權所有&nbsp;&copy Chia-yu Inc. All Rights Reserved.', '../contact/contact.html', '_self');
function news_address()
{
   var today = new Date();
   var address = '';
   var size1 = title1.length, size2 = title2.length, size3 = title3.length, size4 = title4.length;

   if (size1 > 0)
   {
      var i = today.getSeconds() % size1;
      address += '<a href="' + title1[i].url + '" target="' + title1[i].target + '">' + title1[i].title + '</a>';
   }

   return address;
}
