  var name = 'index';
  var nm = location.pathname.match(/(\/|\\)([\w.]+)$/);
  if (nm) 
    name = nm[2].replace(/\.html$/i, '');

  function make_link(base, txt) {
    return '<tr><td></td>' +
      (name.match(new RegExp("^" + base + "$", "i"))? 
        '<td align=right nowrap><div class=navhr>' : 
	'<td align=right nowrap><div class=nav onclick="location.href=\'' + base + '.html\'" ' +
	'onmouseover="this.style.color=\'#990000\'" onmouseout="this.style.color=\'#808080\'">') +
      txt + '</div></td>' +
	'<td></td>' +
	'</tr><tr><td></td><td><div class=navsp>&nbsp;</div></td><td></td></tr>';
  }

  function make_header(txt) {
    return '<table cellspacing=0 cellpadding=0 border=0>' +
	  '<tr>' +
	    '<td rowspan=3 width=35 nowrap></td>' +
	    '<td height=25 width=150 nowrap></td>' +
	    '<td width=550 nowrap></td>' +
	  '</tr><tr>' +
	    '<td rowspan=2 height=50 style="border-left:solid 1px white;' +
		'cursor:pointer" align=center valign=bottom nowrap ' +
	        'onclick="location.href=\'index.html\'">' +
              '<img src="widget/ema_logo_2009.gif" style="width:150;height:50;margin:0">' +
            '</td><td></td>' +
	  '</tr><tr>' +
	    '<td align=right valign=center style="height:50;background-color:#151B54;width:550">' +
	      '<div style="margin-right:30;background-color:#151B54;font-size:20;font-weight:bold;' +
		'color:white;font-family:Arial">' +
		txt +
	      '</div></td></tr></table>';
  }

  var navtable_side = 
    '<table cellspacing=0 cellpadding=0 border=0 style="background-color:white">' +
      '<tr><td width=25 nowrap>&nbsp;</td><td height=20 width=135 nowrap></td><td width=25 nowrap>&nbsp;</td></tr>' +
    make_link('index', 'HOME') +
    make_link('about', 'ABOUT EMA') +
    make_link('strategy', 'STRATEGY') +
    make_link('fund', 'EMA GARP FUND') +
//    '<tr><td></td><td align=right nowrap><div class=nav onclick="window.open(\'http://www.emavn.com\')" ' +
//      'onmouseover="this.style.color=\'#990000\'" onmouseout="this.style.color=\'#808080\'">' +
//      'EMA VIETNAM FUND' + '</div></td><td></td>' +
//      '</tr><tr><td></td><td><div class=navsp>&nbsp;</div></td><td></td></tr>' +
//    make_link('investors', 'INVESTORS') +
//    make_link('capital', 'NEED CAPITAL?') +
    make_link('team', 'TEAM') +
    make_link('newsletter', 'NEWSLETTER') +
    make_link('archive', 'ARCHIVE') +
    make_link('contact', 'CONTACT US') +
//    make_link('job', 'JOBS') +
    '</table>';

  var write_copy = 
    '<div align=left style="font-size:8pt;padding:10 0 0 2;color:#808080">' +
      '&copy; Copyright 2006 - 2009  Equity Management Associates</div>';

