﻿/**
 * @author Administrator
 */





function statusbar(country)
{ 
  


  status_txt = new Array("","其富國際股份有限公司","其富国际股份有限公司","其富国際股份有限公司","Chif International Co., Ltd.");

  

   switch(country)
   { case 'TW':
     top.status = status_txt[1];
  	 break;
	 
	   case 'CN':
     top.status = status_txt[2];
   	 break;

	   case 'JP':
     top.status = status_txt[3];
   	 break;


	   case 'EN':
     top.status = status_txt[4];
   	 break;
	 
	   default: 
	   top.status = status_txt[0];
	   return;
   }  
  	
}
