// URL of the icon
var BMainLink = new Array();
BMainLink[0] = '../about/5day.htm';
BMainLink[1] = '../voter/voter.htm';

//images file name 
var BMainImg = new Array();
BMainImg[0] = '5day_icon.jpg';
BMainImg[1] = 'voterlogo.gif';

// image in images directory = 0
// image in language sub directory = 1 (i.e. 3 different images in
var BimgLoc = new Array();
BimgLoc[0] = 0;
BimgLoc[1] = 0;

//set alternate text for the items
var BAltTitle = new Array();

// key in the differnt alternae text for different icon
// 0 = english
// 1 = Traditional Chinese
// 2 = Simplify Chinese

BAltTitle[0] = new Array();
BAltTitle[0][0] = '5-day week logo';
BAltTitle[0][1] = '政府五天工作周';
BAltTitle[0][2] = '政府五天工作周';

BAltTitle[1] = new Array();
BAltTitle[1][0] = 'Be a Voter Logo';
BAltTitle[1][1] = '登记做选民';
BAltTitle[1][2] = '登记做选民'

// <script language="JavaScript" type="text/JavaScript" src="../../js/gen_bottom_icons.js"></script>


// ---------------- Program Code ---------------- //
// --- don't edit here --- //
B_url = 'c:/test/reo/';
B_url = top.location.href;

//alert(_url);

B_sc_svr = "/sc/"; 
B_test_svr = "www0.eac.gov.hk";
B_prod_svr = "www.eac.gov.hk";
B_test_url = "http://www0.eac.gov.hk";
B_prod_url = "http://www.eac.gov.hk";
B_testsite= "www0.reo.gov.hk";
B_prodsite= "www.reo.gov.hk";
B_english = "/en/";
B_chinese = "/ch/";

function B_getLangOption()
{
   if (B_url.indexOf(B_sc_svr) != -1)
      return 2;	
   
   if (B_url.indexOf(B_chinese) != -1)
      return 1;

	return 0;
}

str_part1 = '<p><a href="';str_part2 = '"> <img src="';str_part3 = '"  alt="';str_part4 = '" border=0></a></p>';

for (var x = 0; x < BMainLink.length; x++)
{
   B_imgRootLoc = '../../images/';
   if (BimgLoc[x] != 0)
   {
      if (B_url.indexOf(B_sc_svr) != -1)
         B_imgRootLoc = B_imgRootLoc+"sc/";
	  else if (B__url.indexOf(B_chinese) != -1)
         B_imgRootLoc = B_imgRootLoc+"ch/";
      else
         B_imgRootLoc = B_imgRootLoc+"en/";
   }
   B_str_out = str_part1 + BMainLink[x] + str_part2 + B_imgRootLoc+BMainImg[x] + str_part3 + BAltTitle[x][B_getLangOption()] + str_part4;

//alert(B_str_out);

   document.write(B_str_out);
}

//<p><a href="http://sc.info.gov.hk/TuniS/www.voterregistration.gov.hk/chi/home.htm">
//<img src="http://www0.reo.gov.hk/images/2008VR.jpg" alt="恁镙肾暮" border=0>
//</a></p>

//<p><a href="http://sc.info.gov.hk/gb/www0.reo.gov.hk/ch/about/5day.htm">
//<img src="http://www0.reo.gov.hk/images/5day_icon.jpg" alt="淉葬拻毞驮&#37356;笚" border=0>
//</a></p>

//<p><a href="http://sc.info.gov.hk/gb/www0.reo.gov.hk/ch/voter/voter.htm">
//<img src="http://www0.reo.gov.hk/images/voterlogo.gif" alt="肾暮酕恁镙" width="95" height="78" border=0>
//</a></p>










