function showHeader(URL, sNo) {
  findLink(URL);

  var section = [ ['top_prospective', 'prospective/index.html'],
                  ['top_current', 'current.html'],
                  ['top_exchange', 'exchange/index.html'],
                  ['top_minor', 'minor/index.html'],
                  ['top_alumni', 'alumni/index.html'],
                  ['top_recruiters', 'recruiters/index.html']
				];

  Header_1 = '  <table width="900" border="0" align="center" cellpadding="0" cellspacing="0">'
         + '    <tr>' 
         + '      <td width="226" rowspan="3"><table width="100%" border="0" cellspacing="0" cellpadding="0">'
         + '        <tr><td bgcolor="#FFFFFF"><img src="' + siteLink + 'img/spacer.gif" width="1" height="9"><map name="HomeMap"><area shape="rect" coords="10,5,386,43" href="index.html"><area shape="rect" coords="10,0,240,5" href="http://www.bm.ust.hk" target="_blank"></map><map name="BMMap"><area shape="rect" coords="10,13,240,26" href="http://www.bm.ust.hk" target="_blank"></map></td></tr>'
	 
  Header_2 = '        <tr><td><img src="' + siteLink + 'img/top_left.jpg" width="226" height="39"></td></tr>'
         + '        <tr><td><a href="' + siteLink + 'index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'img_home\',\'\',\'' + siteLink + 'img/home_f2.jpg\',1)"><img src="' + siteLink + 'img/home.jpg" name="img_home" width="53" height="25" border="0"></a><img src="' + siteLink + 'img/home2.jpg" width="173" height="25"></td></tr>'
         + '      </table></td>'
         + '      <td width="674"><img src="' + siteLink + 'img/top.jpg" width="580" height="26" usemap="#BMMap" border=0><a href="http://www.bm.ust.hk/search/index.html" target="_blank" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'top_search\',\'\',\'' + siteLink + 'img/top_search_f2.gif\',1)"><img src="' + siteLink + 'img/top_search.gif" name="top_search" width=50 height=26 border=0></a><a href="' + siteLink + 'chi/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'top_cn\',\'\',\'' + siteLink + 'img/top_cn_f2.gif\',1)"><img src="' + siteLink + 'img/top_cn.gif" name="top_cn" width="44" height="26" border="0"></a></td>'
         + '    </tr>'
         + '    <tr><td><img src="' + siteLink + 'img/title.jpg" width=674 height=116 usemap="#HomeMap" border=0></td></tr>'
         + '    <tr>' 
         + '      <td bgcolor="#6B5BA4"><a href="' + siteLink + 'about/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image5\',\'\',\'' + siteLink + 'img/menu_about_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_about.jpg" name="Image5" width="66" height="25" border="0"></a><a href="' + siteLink + 'programs/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image6\',\'\',\'' + siteLink + 'img/menu_program_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_program.jpg" name="Image6" width="87" height="25" border="0"></a><a href="' + siteLink + 'enrichment/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image26\',\'\',\'' + siteLink + 'img/menu_enrich_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_enrich.jpg" name="Image26" width="152" height="25" border="0"></a><a href="' + siteLink + 'career/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image8\',\'\',\'' + siteLink + 'img/menu_career_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_career.jpg" name="Image8" width="126" height="25" border="0"></a><a href="' + siteLink + 'experience/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image9\',\'\',\'' + siteLink + 'img/menu_experience_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_experience.jpg" name="Image9" width="121" height="25" border="0"></a><a href="' + siteLink + 'campuslife/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage(\'Image10\',\'\',\'' + siteLink + 'img/menu_campus_f2.jpg\',1)"><img src="' + siteLink + 'img/menu_campus.jpg" name="Image10" width="122" height="25" border="0"></a></td>'
         + '    </tr>'
         + '  </table>'

  document.write(Header_1);
  for (i in section) {
    if (sNo==i) {
      document.write("<tr><td bgcolor='#FFFFFF'><a href='" + siteLink + section[i][1] + "'><img src='" + siteLink + "img/" + section[i][0] + "_f3.jpg' border=0></a></td></tr>");
    } else {
	  document.write("<tr><td bgcolor='#FFFFFF'><a href='" + siteLink + section[i][1] + "' onMouseOver=\"MM_swapImage('" + section[i][0] + "','','" + siteLink + "img/" + section[i][0] + "_f2.jpg',1)\" onMouseOut=\"MM_swapImgRestore()\"><img src='" + siteLink + "img/" + section[i][0] + ".jpg' border=0 id=" + section[i][0] + " name=" + section[i][0] + "></a></td></tr>");
    }
  }	   
  document.write(Header_2);
}
