/***********************************************
* Switch Content script- ?Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use. Last updated Mar 23rd, 2004.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

var enablepersist="off" //Enable saving state of content structure using session cookies? (on/off)
var collapseprevious="yes" //Collapse previously open content when opening present? (yes/no)



if (document.getElementById){
document.write('<style type="text/css">')
document.write('.switchcontent{display:none;}')
document.write('</style>')
}

function getElementbyClass(classname){
ccollect=new Array()
var inc=0
var alltags=document.all? document.all : document.getElementsByTagName("*")
for (i=0; i<alltags.length; i++){
if (alltags[i].className==classname)
ccollect[inc++]=alltags[i]
}
}

function contractcontent(omit){
var inc=0
while (ccollect[inc]){
if (ccollect[inc].id!=omit)
ccollect[inc].style.display="none"
inc++
}
}

function expandcontent(cid){
if (typeof ccollect!="undefined"){
if (collapseprevious=="yes")
contractcontent(cid)
document.getElementById(cid).style.display=(document.getElementById(cid).style.display!="block")? "block" : "none"
}
}

function revivecontent(){
contractcontent("omitnothing")
selectedItem=getselectedItem()
selectedComponents=selectedItem.split("|")
for (i=0; i<selectedComponents.length-1; i++)
document.getElementById(selectedComponents[i]).style.display="block"
}

function get_cookie(Name) { 
var search = Name + "="
var returnvalue = "";
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search)
if (offset != -1) { 
offset += search.length
end = document.cookie.indexOf(";", offset);
if (end == -1) end = document.cookie.length;
returnvalue=unescape(document.cookie.substring(offset, end))
}
}
return returnvalue;
}

function getselectedItem(){
if (get_cookie(window.location.pathname) != ""){
selectedItem=get_cookie(window.location.pathname)
return selectedItem
}
else
return ""
}

function saveswitchstate(){
var inc=0, selectedItem=""
while (ccollect[inc]){
if (ccollect[inc].style.display=="block")
selectedItem+=ccollect[inc].id+"|"
inc++
}

document.cookie=window.location.pathname+"="+selectedItem
}

function do_onload(){
uniqueidn=window.location.pathname+"firsttimeload"
getElementbyClass("switchcontent")
if (enablepersist=="on" && typeof ccollect!="undefined"){
document.cookie=(get_cookie(uniqueidn)=="")? uniqueidn+"=1" : uniqueidn+"=0" 
firsttimeload=(get_cookie(uniqueidn)==1)? 1 : 0 //check if this is 1st page load
if (!firsttimeload)
revivecontent()
}
}


if (window.addEventListener)
window.addEventListener("load", do_onload, false)
else if (window.attachEvent)
window.attachEvent("onload", do_onload)
else if (document.getElementById)
window.onload=do_onload

if (enablepersist=="on" && document.getElementById)
window.onunload=saveswitchstate




//--- Function of JS Request.QueryString
function RObj(ea){var LS="";var QS=new Object();var un="undefined";var f="function";var n="number";var r="string";var e1="ERROR:Index out of range in\r\nRequest.QueryString";var e2="ERROR:Wrong number of arguments or invalid property assignment\r\nRequest.QueryString";var e3="ERROR:Object doesn't support this property or method\r\nRequest.QueryString.Key";function Err(arg){if(ea)alert("Request Object:\r\n"+arg)};function URID(t){var d="";if(t){for(var i=0;i<t.length;++i){var c=t.charAt(i);d+=(c=="+"?" ":c);};};return unescape(d);};function OL(o){var l=0;for(var i in o){if(typeof(o[i])!=f) l++;};return l;};function AK(key){var auk=true;for(var u in QS){if(typeof(QS[u])!=f&&u.toString().toLowerCase()==key.toLowerCase()){auk=false;return u;}};if(auk){QS[key]=new Object();QS[key].toString=function(){return TS(QS[key])};QS[key].Count=function(){return OL(QS[key])};QS[key].Count.toString=function(){return OL(QS[key]).toString()};QS[key].Item=function(e){if(typeof(e)==un) return QS[key];else {if(typeof(e)==n){var a=QS[key][Math.ceil(e)];if(typeof(a)==un) Err(e1+"(\""+key+"\").Item("+e+")");return a;}else Err("ERROR:Expecting numeric input in\r\nRequest.QueryString(\""+key+"\").Item(\""+e+"\")");}};QS[key].Item.toString=function(e){if(typeof(e)==un) return QS[key].toString();else {var a=QS[key][e];if(typeof(a)==un) Err(e1+"(\""+key+"\").Item("+e+")");return a.toString();};};QS[key].Key=function(e){var t=typeof(e);if(t==r){var a=QS[key][e];return(typeof(a)!=un&&a&&a.toString()?e:"");}else Err(e3+"("+(e?e:"")+")");};QS[key].Key.toString=function(){return un};};return key};function AVTK(key,val){if(key!=""){var key=AK(key);var l=OL(QS[key]);QS[key][l+1]=val;}};function TS(o){var s="";for(var i in o){var ty=typeof(o[i]);if(ty=="object") s+=TS(o[i]);else if(ty!=f) s+=o[i]+", ";};var l=s.length;if(l>1)return(s.substring(0,l-2));return(s==""?un:s);};function KM(k,o){var k=k.toLowerCase();for(var u in o){if(typeof(o[u])!=f&&u.toString().toLowerCase()==k) return u;};}if(window.location&&window.location.search){LS=window.location.search;var l=LS.length;if(l>0){LS=LS.substring(1,l);var preAmpAt=0;var ampAt=-1;var eqAt=-1;var k=0;var skip=false;for(var i=0;i<l;++i){var c=LS.charAt(i);if(LS.charAt(preAmpAt)=="="||(preAmpAt==0&&i==0&&c=="=")) skip=true;if(c=="="&&eqAt==-1&&!skip) eqAt=i;if(c=="&"&&ampAt==-1){if(eqAt!=-1) ampAt=i;if(skip) preAmpAt=i+1;skip=false;};if(ampAt>eqAt){AVTK(URID(LS.substring(preAmpAt,eqAt)),URID(LS.substring(eqAt+1,ampAt)));preAmpAt=ampAt+1;eqAt=ampAt=-1;++k;};};if(LS.charAt(preAmpAt)!="="&&(preAmpAt!=0||i!=0||c!="=")){if(preAmpAt!=l){if(eqAt!=-1) AVTK(URID(LS.substring(preAmpAt,eqAt)),URID(LS.substring(eqAt+1,l)));else if(preAmpAt!=l-1) AVTK(URID(LS.substring(preAmpAt,l)),"");};if(l==1) AVTK(LS.substring(0,1),"");};};};var TC=OL(QS);if(!TC) TC=0;QS.toString=function(){return LS.toString()};QS.Count=function(){return(TC?TC:0)};QS.Count.toString=function(){return(TC?TC.toString():"0")};QS.Item=function(e){if(typeof(e)==un) return LS;else {if(typeof(e)==n){var e=Math.ceil(e);var c=0;for(var i in QS){if(typeof(QS[i])!=f&&++c==e) return QS[i];};Err(e1+"().Item("+e+")");}else return QS[KM(e,QS)];};return un;};QS.Item.toString=function(){return LS.toString()};QS.Key=function(e){var t=typeof(e);if(t==n){var e=Math.ceil(e);var c=0;for(var i in QS){if(typeof(QS[i])!=f&&++c==e) return i;}}else if(t==r){var e=KM(e,QS);var a=QS[e];return(typeof(a)!=un&&a&&a.toString()?e:"");}else Err(e2+"().Key("+(e?e:"")+")");Err(e1+"().Item("+e+")");};QS.Key.toString=function(){Err(e2+"().Key");};this.QueryString=function(k){if(typeof(k)==un) return QS;else {var k=KM(k,QS);if(typeof(QS[k])==un){t=new Object();t.Count=function(){return 0};t.Count.toString=function(){return "0"};t.toString=function(){return un};t.Item=function(e){return un};t.Item.toString=function(){return un};t.Key=function(e){Err(e3+"("+(e?e:"")+")");};t.Key.toString=function(){return un};return t;}if(typeof(k)==n) return QS.Item(k);else return QS[k];}};this.QueryString.toString=function(){return LS.toString();};this.QueryString.Count=function(){return(TC?TC:0)};this.QueryString.Count.toString=function(){return(TC?TC.toString():"0")};this.QueryString.Item=function(e){if(typeof(e)==un) return LS.toString();else {if(typeof(e)==n){var e=Math.ceil(e);var c=0;for(var i in QS){if(typeof(QS[i])!=f&&++c==e) return QS[i];};Err(e1+".Item("+e+")");}else return QS[KM(e,QS)];}if(typeof(e)==(n)) Err(e1+".Item("+e+")");return un;};this.QueryString.Item.toString=function(){return LS.toString()};this.QueryString.Key=function(e){var t=typeof(e);if(t==n){var e=Math.ceil(e);var c=0;for(var i in QS){if(typeof(QS[i])=="object"&&(++c==e)){return i;}}}else if(t==r){var e=KM(e,QS);var a=QS[e];return(typeof(a)!=un&&a&&a.toString()?e:"");}else Err(e2+".Key("+(e?e:"")+")");Err(e1+".Item("+e+")");};this.QueryString.Key.toString=function(){Err(e2+".Key");};this.Version=1.2;this.Author="Andrew Urquhart (www.andrewu.co.uk)";};var Request=new RObj(false);

var tips = Request.QueryString('tips');

function change_tips() {
	if (tips == 'ec')
	{
		document.getElementById('m3').style.display='block';
		document.getElementById('t2').style.display='block';
		MM_nbGroup('down','group1','mabout6','images/m_about_6_o.gif',1);
	} else if (tips == 'bc') {
		document.getElementById('m4').style.display='block';
		document.getElementById('t3').style.display='block';
		MM_nbGroup('down','group1','mabout62','images/m_about_6_o.gif',1)
	}
}

var hotels = Request.QueryString('hotels');

function change_hotels() {
	if (hotels == 'ec')
	{
		document.getElementById('m3').style.display='block';
		document.getElementById('t2').style.display='block';
		MM_nbGroup('down','group1','hotels','images/m_hotels_o.gif',1);
	} else if (hotels == 'bc') {
		document.getElementById('m4').style.display='block';
		document.getElementById('t3').style.display='block';
		MM_nbGroup('down','group1','hotels2','images/m_hotels_o.gif',1)
	}
}

function MM_nbGroup(event, grpName) { //v6.0
  var i,img,nbArr,args=MM_nbGroup.arguments;
  if (event == "init" && args.length > 2) {
    if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
      img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
      if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
      nbArr[nbArr.length] = img;
      for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
        if (!img.MM_up) img.MM_up = img.src;
        img.src = img.MM_dn = args[i+1];
        nbArr[nbArr.length] = img;
    } }
  } else if (event == "over") {
    document.MM_nbOver = nbArr = new Array();
    for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
      nbArr[nbArr.length] = img;
    }
  } else if (event == "out" ) {
    for (i=0; i < document.MM_nbOver.length; i++) {
      img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
  } else if (event == "down") {
    nbArr = document[grpName];
    if (nbArr)
      for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
    document[grpName] = nbArr = new Array();
    for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
      if (!img.MM_up) img.MM_up = img.src;
      img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
      nbArr[nbArr.length] = img;
  } }
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_showHideLayers() { //v3.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
    obj.visibility=v; }
}

function printTOP(){
/*
document.write('<style type="text/css">');
document.write('<!--');
document.write('#Layer1 {');
document.write('	position:absolute;');
document.write('	left:120px;');
document.write('	top:160px;');
document.write('	z-index:1;');
document.write('	width: 130px;');
document.write('	visibility: hidden;');
document.write('}');
document.write('');
document.write('#Layer2 {');
document.write('	position:absolute;');
document.write('	left:219px;');
document.write('	top:160px;');
document.write('	z-index:1;');
document.write('	width: 150px;');
document.write('	visibility: hidden;');
document.write('}');
document.write('');
document.write('#Layer3 {');
document.write('	position:absolute;');
document.write('	left:363px;');
document.write('	top:160px;');
document.write('	z-index:1;');
document.write('	width: 130px;');
document.write('	visibility: hidden;');
document.write('}');
document.write('');
document.write('#Layer4 {');
document.write('	position:absolute;');
document.write('	left:487px;');
document.write('	top:160px;');
document.write('	z-index:1;');
document.write('	width: 130px;');
document.write('	visibility: hidden;');
document.write('}');
document.write('#Layer5 {');
document.write('	position:absolute;');
document.write('	left:603px;');
document.write('	top:160px;');
document.write('	z-index:1;');
document.write('	width: 150px;');
document.write('	visibility: hidden;');
document.write('}');
document.write('-->');
document.write('</style>');
document.write('<div id="Layer1">');
document.write('  <table width="100%" border="0" cellpadding="2" cellspacing="0" onmouseover="MM_showHideLayers(\'Layer1\',\'\',\'show\')" onmouseout="MM_showHideLayers(\'Layer1\',\'\',\'hide\')">');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'fair_review.htm\';">Fair Review</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'fair_photo.htm\';">Photo Gallery</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'fair_exhibitors.htm\';">List of Past Exhibitors</td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</div>');
document.write('');
document.write('<div id="Layer2">');
document.write('  <table width="100%" border="0" cellpadding="2" cellspacing="0" onmouseover="MM_showHideLayers(\'Layer2\',\'\',\'show\')" onmouseout="MM_showHideLayers(\'Layer2\',\'\',\'hide\')">');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'exh_details.htm\';">Participation Details</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'rules.htm\';">Rules and Regulations</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'tips.htm?tips=ec\';">Visiting Tips</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'faq.htm\';">FAQ</td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</div>');
document.write('');
document.write('<div id="Layer3">');
document.write('  <table width="100%" border="0" cellpadding="2" cellspacing="0" onmouseover="MM_showHideLayers(\'Layer3\',\'\',\'show\')" onmouseout="MM_showHideLayers(\'Layer3\',\'\',\'hide\')">');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'regform.htm\';">Online Registration</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'tips.htm?tips=bc\';">Visiting Tips</td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</div>');
document.write('');
document.write('<div id="Layer4">');
document.write('  <table width="100%" border="0" cellpadding="2" cellspacing="0" onmouseover="MM_showHideLayers(\'Layer4\',\'\',\'show\')" onmouseout="MM_showHideLayers(\'Layer4\',\'\',\'hide\')">');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'media_information.htm\';">General Information</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'media_enq.asp\';"> Media Enquiries</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'press.htm\';">Press Releases</td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</div>');
document.write('<div id="Layer5">');
document.write('  <table width="100%" border="0" cellpadding="2" cellspacing="0" onmouseover="MM_showHideLayers(\'Layer5\',\'\',\'show\')" onmouseout="MM_showHideLayers(\'Layer5\',\'\',\'hide\')">');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'news_roadshow.htm\';">Roadshow Information</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'news_newsletter.htm\';"> Newsletter</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'news_album.htm\';">New Releases</td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td bgcolor="#F5F5F5" class="menu_table" onmouseover="this.className=\'on\'" onmouseout="this.className=\'off\'" onclick="self.location=\'news_music.htm\';">Music Company Guide </td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</div>');
document.write('<table width="760" border="0" cellspacing="0" cellpadding="0">');
document.write('        <tr>');
document.write('          <td width="370"><img alt="HKMF" src="images/mainbg1.jpg" width="370" height="140" /></td>');
document.write('          <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('            <tr>');
document.write('              <td><a href="http://www.hkmusicfair.com/intro.htm"><img src="images/m1_english.gif" alt="English" width="65" height="22" border="0" /></a><a href="http://www.hkmusicfair.com/chi/intro.htm"><img src="images/m1_tc.gif" alt="ÁcÅé" width="50" height="22" border="0" /></a><a href="http://gbcode.hktdc.com/gb/www.hkmusicfair.com/chi/intro.htm"><img src="images/m1_sc.gif" alt="Â²Åé" width="50" height="22" border="0" /></a><a href="sitemap.htm"><img alt="Sitemap" src="images/m1_sitemap.gif" width="70" height="22" border="0" /></a><a href="http://www.hktdc.com/abouttdc/index.htm" target="_blank"><img alt="About TDC" src="images/m1_abouttdc.gif" width="85" height="22" border="0" /></a><a href="mailto:music@tdc.org.hk?subject=General Enquiries about Hong Kong Music Fair"><img alt="Contact Us" src="images/m1_contactus.gif" width="90" height="22" border="0" /></a></td>');
document.write('              </tr>');
document.write('          </table>');
document.write('          <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="410" height="118" align="middle">');
document.write('<param name="allowScriptAccess" value="sameDomain" />');
document.write('<param name="movie" value="images/mf_banner_flash.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="images/mf_banner_flash.swf" quality="high" bgcolor="#ffffff" width="410" height="118" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
document.write('</object></td>');
document.write('        </tr>');
document.write('');
document.write('      </table>');
*/

document.write('      <table id="Table_01" width="780" height="" border="0" cellpadding="0" cellspacing="0">');
document.write('      	<tr>');
document.write('      		<td width="110" valign="top">');
document.write('          <a href="intro.htm"><img alt="Home" src="images/m11_home.gif" width="110" height="23" border="0" id="Image6" onmouseover="MM_swapImage(\'Image6\',\'\',\'images/m21_home.gif\',1)" onmouseout="MM_swapImgRestore()" /></a></td>');
document.write('      		<td width="86" valign="top">');
document.write('          <img alt="About HKMF" src="images/m11_abouthkmf.gif" width="86" height="23" border="0" id="Image7" onmouseover="MM_showHideLayers(\'Layer1\',\'\',\'show\');MM_swapImage(\'Image7\',\'\',\'images/m21_abouthkmf.gif\',1)" onmouseout="MM_showHideLayers(\'Layer1\',\'\',\'hide\');MM_swapImgRestore()" /></td>');
document.write('      		<td width="123" valign="top">');
document.write('          <img alt="Exhibitors\' Centre" src="images/m11_ec.gif" width="123" height="23" border="0" id="Image8" onmouseover="MM_showHideLayers(\'Layer2\',\'\',\'show\');MM_swapImage(\'Image8\',\'\',\'images/m21_ec.gif\',1)" onmouseout="MM_showHideLayers(\'Layer2\',\'\',\'hide\');MM_swapImgRestore()" /></td>');
document.write('      		<td valign="top"colspan="3">');
document.write('          <img alt="Buyers\' Centre" src="images/m11_bc.gif" width="102" height="23" border="0" id="Image9" onmouseover="MM_showHideLayers(\'Layer3\',\'\',\'show\');MM_swapImage(\'Image9\',\'\',\'images/m21_bc.gif\',1)" onmouseout="MM_showHideLayers(\'Layer3\',\'\',\'hide\');MM_swapImgRestore()" /></td>');
document.write('      		<td valign="top"colspan="3">');
document.write('          <img alt="Media Centre" src="images/m11_mc.gif" width="97" height="23" id="Image11" onmouseover="MM_showHideLayers(\'Layer4\',\'\',\'show\');MM_swapImage(\'Image11\',\'\',\'images/m21_mc.gif\',1)" onmouseout="MM_showHideLayers(\'Layer4\',\'\',\'hide\');MM_swapImgRestore()" /></td>');
document.write('      		<td valign="top"colspan="2">');
document.write('          <img alt="Industry News" src="images/m11_in.gif" width="97" height="23" border="0" id="Image10"  onmouseover="MM_showHideLayers(\'Layer5\',\'\',\'show\');MM_swapImage(\'Image10\',\'\',\'images/m21_in.gif\',1)" onmouseout="MM_showHideLayers(\'Layer5\',\'\',\'hide\');MM_swapImgRestore()" /></td>');
document.write('      		<td valign="top"colspan="2">');
document.write('      			<img src="images/draft_1_14.gif" width="165" height="23" alt=""></td>');
document.write('        </tr>');
document.write('	<tr>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="110" height="1" alt=""></td>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="86" height="1" alt=""></td>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="123" height="1" alt=""></td>');
document.write('		<td width="71" valign="top">');
document.write('			<img src="images/spacer.gif" width="71" height="1" alt=""></td>');
document.write('		<td width="20" valign="top">');
document.write('			<img src="images/spacer.gif" width="20" height="1" alt=""></td>');
document.write('		<td width="11" valign="top">');
document.write('			<img src="images/spacer.gif" width="11" height="1" alt=""></td>');
document.write('		<td width="42" valign="top">');
document.write('			<img src="images/spacer.gif" width="42" height="1" alt=""></td>');
document.write('		<td width="47" valign="top">');
document.write('			<img src="images/spacer.gif" width="47" height="1" alt=""></td>');
document.write('		<td width="8" valign="top">');
document.write('			<img src="images/spacer.gif" width="8" height="1" alt=""></td>');
document.write('		<td width="61" valign="top">');
document.write('			<img src="images/spacer.gif" width="61" height="1" alt=""></td>');
document.write('		<td width="36" valign="top">');
document.write('			<img src="images/spacer.gif" width="36" height="1" alt=""></td>');
document.write('		<td width="50" valign="top">');
document.write('			<img src="images/spacer.gif" width="50" height="1" alt=""></td>');
document.write('		<td width="115" valign="top">');
document.write('			<img src="images/spacer.gif" width="115" height="1" alt=""></td>');
document.write('	</tr>');
document.write('	<tr>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="110" height="1" alt=""></td>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="86" height="1" alt=""></td>');
document.write('		<td valign="top">');
document.write('			<img src="images/spacer.gif" width="123" height="1" alt=""></td>');
document.write('		<td width="71" valign="top">');
document.write('			<img src="images/spacer.gif" width="71" height="1" alt=""></td>');
document.write('		<td width="20" valign="top">');
document.write('			<img src="images/spacer.gif" width="20" height="1" alt=""></td>');
document.write('		<td width="11" valign="top">');
document.write('			<img src="images/spacer.gif" width="11" height="1" alt=""></td>');
document.write('		<td width="42" valign="top">');
document.write('			<img src="images/spacer.gif" width="42" height="1" alt=""></td>');
document.write('		<td width="47" valign="top">');
document.write('			<img src="images/spacer.gif" width="47" height="1" alt=""></td>');
document.write('		<td width="8" valign="top">');
document.write('			<img src="images/spacer.gif" width="8" height="1" alt=""></td>');
document.write('		<td width="61" valign="top">');
document.write('			<img src="images/spacer.gif" width="61" height="1" alt=""></td>');
document.write('		<td width="36" valign="top">');
document.write('			<img src="images/spacer.gif" width="36" height="1" alt=""></td>');
document.write('		<td width="50" valign="top">');
document.write('			<img src="images/spacer.gif" width="50" height="1" alt=""></td>');
document.write('		<td width="115" valign="top">');
document.write('			<img src="images/spacer.gif" width="115" height="1" alt=""></td>');
document.write('	</tr>');
document.write('      </table>');

}      

function printRIGHT(){
document.write('	<table width="206" border="0"  align="center"  cellspacing="0" cellpadding="3">');
document.write('      <tr>');
document.write('        <td height="5"></td>');
document.write('        <td height="5" valign="top"><img alt="Photo" src="images/spacer.gif" width="10" height="10" /></td>');
document.write('        <td height="5"></td>');
document.write('        <td width="1" height="5"><img alt="Photo" src="images/spacer.gif" width="1" height="1" /></td>');
document.write('        <td width="39" height="5"></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td width="7" height="27">&nbsp;</td>');
document.write('        <td width="113" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('          <tr>');
document.write('            <td><div id="m1" class="switchcontent"><a href="intro.htm"><img alt="Home" src="images/m12_introduction.gif" name="Image1" width="156" height="31" border="0" id="Image1" /></a><br><br><a href="hkmf_glance.htm"><img src="images/hkmf_glance.jpg" alt="HKMF Brochure" width="156" height="72" border="0"></a></div></td>');
document.write('          </tr>');
document.write('          ');
document.write('		  <tr>');
document.write('            <td><div id="m2" class="switchcontent"><img alt="About HKMF" src="images/m12_abouthkmf.gif" name="Image2" width="127" height="31" id="Image2"/></div></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td>');
document.write('			<div id="t1" class="switchcontent">');
document.write('			<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="8" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="fair_review.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout1\',\'images/m_about_1_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout1\',\'images/m_about_1_o.gif\',\'images/m_about_1_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Fair Review" src="images/m_about_1.gif" name="mabout1" width="113" height="15" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="fair_photo.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout2\',\'images/m_about_2_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout2\',\'images/m_about_2_o.gif\',\'images/m_about_2_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Photo Gallery" src="images/m_about_2.gif" name="mabout2" width="113" height="15" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="fair_exhibitors.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout3\',\'images/m_about_3_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout3\',\'images/m_about_3_o.gif\',\'images/m_about_3_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="List of Past Exhibitors" src="images/m_about_3.gif" name="mabout3" width="130" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('            </table>');
document.write('			</div>			</td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td><div id="m3" class="switchcontent"><img alt="Exhibitors\' Centre" src="images/m12_ec.gif" name="Image3" width="156" height="31" id="Image3"/></div></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td>');
document.write('			<div id="t2" class="switchcontent">');
document.write('			<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('			  <tr>');
document.write('                <td><img alt="Photo" src="images/spacer.gif" width="7" height="8" /></td>');
document.write('			    </tr>');
document.write('              <tr>');
document.write('                <td><a href="exh_details.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout4\',\'images/m_about_4_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout4\',\'images/m_about_4_o.gif\',\'images/m_about_4_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Participation Details" src="images/m_about_4.gif" name="mabout4" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="rules.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout5\',\'images/m_about_5_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout5\',\'images/m_about_5_o.gif\',\'images/m_about_5_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Rules and Regulations" src="images/m_about_5.gif" name="mabout5" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="tips.htm?tips=ec" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout6\',\'images/m_about_6_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout6\',\'images/m_about_6_o.gif\',\'images/m_about_6_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Visiting Tips" src="images/m_about_6.gif" name="mabout6" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="faq.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout6b\',\'images/m_about_6b_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout6b\',\'images/m_about_6b_o.gif\',\'images/m_about_6b_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="FAQ" src="images/m_about_6b.gif" name="mabout6b" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');

document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="hkmf_hotels.htm?hotels=ec" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'hotels\',\'images/m_hotels_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'hotels\',\'images/m_hotels_o.gif\',\'images/m_hotels_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Value-For-Money Hotels" src="images/m_hotels.gif" name="hotels" width="149" height="14" border="0" /></a></td>');
document.write('              </tr>');

document.write('            </table>');
document.write('			</div>			</td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td><div id="m4" class="switchcontent"><img alt="Buyers\' Centre" src="images/m12_bc.gif" name="Image4" width="132" height="31" id="Image4"/></div></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td>');
document.write('			<div id="t3" class="switchcontent">');
document.write('			<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('			  <tr>');
document.write('                <td><img alt="Photo" src="images/spacer.gif" width="7" height="8" /></td>');
document.write('			    </tr>');
document.write('              <tr>');
document.write('                <td><a href="regform.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout7\',\'images/m_about_7_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout7\',\'images/m_about_7_o.gif\',\'images/m_about_7_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Trade Visitor Pre-Registration Form" src="images/m_about_7.gif" name="mabout7" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="tips.htm?tips=bc" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout62\',\'images/m_about_6_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout62\',\'images/m_about_6_o.gif\',\'images/m_about_6_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Visiting Tips" src="images/m_about_6.gif" name="mabout62" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');

document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="hkmf_hotels.htm?hotels=bc" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'hotels2\',\'images/m_hotels_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'hotels2\',\'images/m_hotels_o.gif\',\'images/m_hotels_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Value-For-Money Hotels" src="images/m_hotels.gif" name="hotels2" width="149" height="14" border="0" /></a></td>');
document.write('              </tr>');


document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="services.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'services\',\'images/m_services_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'services\',\'images/m_services_o.gif\',\'images/m_services_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Supporting Services" src="images/m_services.gif" name="services" width="149" height="14" border="0" /></a></td>');
document.write('              </tr>');

document.write('            </table>');
document.write('			</div>			</td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td><div id="m5" class="switchcontent"><img alt="Media Centre" src="images/m12_mc.gif" name="Image5" width="127" height="31" id="Image5"/></div></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td>');
document.write('			<div id="t4" class="switchcontent">');
document.write('			<table width="100%" border="0" cellspacing="0" cellpadding="0">');
document.write('			  <tr>');
document.write('                <td><img alt="Photo" src="images/spacer.gif" width="7" height="8" /></td>');
document.write('			    </tr>');
document.write('              <tr>');
document.write('                <td><a href="media_information.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout8\',\'images/m_about_8_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout8\',\'images/m_about_8_o.gif\',\'images/m_about_8_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="General Information" src="images/m_about_8.gif" name="mabout8" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="media_enq.asp" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout9\',\'images/m_about_9_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout9\',\'images/m_about_9_o.gif\',\'images/m_about_9_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Media Enquiry" src="images/m_about_9.gif" name="mabout9" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="press.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout10\',\'images/m_about_10_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout10\',\'images/m_about_10_o.gif\',\'images/m_about_10_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Press Release" src="images/m_about_10.gif" name="mabout10" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('            </table>');
document.write('			</div>			</td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td><div id="m6" class="switchcontent"><img alt="Industry News" src="images/m12_in.gif" name="Image51" width="156" height="31" id="Image51"/></div></td>');
document.write('          </tr>');
document.write('          <tr>');
document.write('            <td>');
document.write('			<div id="t5" class="switchcontent">');
document.write('			<table width="100%" border="0" cellspacing="0" cellpadding="0">');
/*
document.write('			  <tr>');
document.write('                <td><img alt="Photo" src="images/spacer.gif" width="7" height="8" /></td>');
document.write('			    </tr>');
document.write('              <tr>');
document.write('                <td><a href="news_roadshow.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout11\',\'images/m_about_11_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout11\',\'images/m_about_11_o.gif\',\'images/m_about_11_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Roadshow Information" src="images/m_about_11.gif" name="mabout11" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
*/
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="news_newsletter.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout12\',\'images/m_about_12_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout12\',\'images/m_about_12_o.gif\',\'images/m_about_12_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Newsletter" src="images/m_about_12.gif" name="mabout12" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
/*
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="news_album.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout13\',\'images/m_about_13_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout13\',\'images/m_about_13_o.gif\',\'images/m_about_13_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="New Releases" src="images/m_about_13.gif" name="mabout13" width="123" height="14" border="0" /></a></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><img src="images/spacer.gif" width="7" height="3" /></td>');
document.write('              </tr>');
document.write('              <tr>');
document.write('                <td><a href="news_music.htm" target="_top" onclick="MM_nbGroup(\'down\',\'group1\',\'mabout14\',\'images/m_about_14_o.gif\',1)" onmouseover="MM_nbGroup(\'over\',\'mabout14\',\'images/m_about_14_o.gif\',\'images/m_about_14_o.gif\',1)" onmouseout="MM_nbGroup(\'out\')"><img alt="Music Company Guide" src="images/m_about_14.gif" name="mabout14" width="148" height="14" border="0" /></a></td>');
document.write('              </tr>');
*/
document.write('            </table>');
document.write('			</div>			</td>');
document.write('          </tr>');
document.write('        </table></td>');
document.write('        <td width="39">&nbsp;</td>');
document.write('        <td width="1" bgcolor="#E3D228"></td>');
document.write('        <td width="39"></td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td width="7">&nbsp;</td>');
document.write('        <td width="113">&nbsp;</td>');
document.write('        <td width="39">&nbsp;</td>');
document.write('        <td width="1" height="240" bgcolor="#E3D228"></td>');
document.write('        <td width="39">&nbsp;</td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td height="40">&nbsp;</td>');
document.write('        <td height="40">&nbsp;</td>');
document.write('        <td height="40">&nbsp;</td>');
document.write('        <td height="40"></td>');
document.write('        <td height="40"></td>');
document.write('      </tr>');
document.write('    </table>');
}             

function printLOGO(){
document.write('	<table width="100%" border="0" cellpadding="0" cellspacing="0" class="content_s">');
document.write('      <tr>');
document.write('        <td width="25">&nbsp;</td>');
document.write('        <td>Organisers:</td>');
document.write('        <td width="10">&nbsp;</td>');
document.write('        <td>&nbsp;</td>');
document.write('        <td>&nbsp;</td>');
document.write('        <td align="right">HKMF is a Core Event of:</td>');
document.write('        <td width="25">&nbsp;</td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td colspan="5" height="10">&nbsp;</td>');
document.write('      </tr>');
document.write('      <tr>');
document.write('        <td width="25">&nbsp;</td>');
document.write('        <td width="93"><img alt="HKTDC" src="http://hkmusicfair.hktdc.com/images/hktdc_logo_s.jpg" width="57" height="40" /></td>');
document.write('        <td width="10">&nbsp;</td>');
document.write('        <td><img alt="IFPI" src="http://hkmusicfair.hktdc.com/images/logo_ifpi.gif" width="59" height="40" /></td>');
document.write('        <td>&nbsp;</td>');
document.write('        <td align="right"><img alt="EExpo" src="http://hkmusicfair.hktdc.com/images/logo_eexpo.gif" width="116" height="40" /></td>');
document.write('        <td width="25">&nbsp;</td>');
document.write('      </tr>');
document.write('    </table>');
}

function printBOTTOM(){
	document.write('<br><footer-start>');
	document.write('<script src="http://www.tdctrade.com/footer/footer.js" type="text/javascript"> </script>');
	document.write('<footer-end>');
}

function getWindowWidth() { 
	var wWidth
	wWidth=(window.innerWidth-760)/2;
	return wWidth;
}