// Copyright (c) 2003  Metaplexor Software, Inc.  All rights reserved.

function StringBuilder() { 
  this.stringArray = new Array();
  this.append = append; 
  this.toString = toString; 
  this.reset = reset; 
}
function append (strValue){ this.stringArray[this.stringArray.length]= strValue; }
function toString(){ return this.stringArray.join(""); }
function reset(){ this.stringArray = null; }

var menubar = new StringBuilder();

menubar.append('<TABLE cellspacing=0 cellpadding=0>');
menubar.append('<TR>');
menubar.append('<TD>');

menubar.append('<TABLE cellSpacing=0 cellPadding=0 width=760 border=0>');
menubar.append('<TBODY>');
  
menubar.append('<TR>');
menubar.append('<TD colspan=10 height=49>');

menubar.append('<TABLE cellSpacing=0 cellPadding=0 width=750 border=0>');
menubar.append('<TBODY>');
menubar.append('<TR>');
menubar.append('<TD width=234 rowSpan=2><IMG height=59 src="images/Metaplexor_Logo-4.jpg" width=237></TD>');
menubar.append('<TD colspan=2 height=39><IMG height=39 src="images/maroon_tag_filler.gif" width=525></TD></TR>');
menubar.append('<TR>');
menubar.append('<TD width=295><IMG height=20 src="images/maroon_tag_filler.gif" width=276></TD>');
menubar.append('<TD width=250><A href="Company.htm">');
menubar.append('<IMG height=20 src="images/product-of-mpxr.gif" width=249 border=0></A></TD></TR>');
menubar.append('</TABLE></TD>');


menubar.append('<TR>');
menubar.append('<TD width=150>');
menubar.append('<A href="SearchStudio.htm">');
menubar.append('<IMG height=21 src="images/home_button.gif" width=150 border=0 name=home_button></A></TD>');

menubar.append('<TD width=77 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_0,151,80);');
menubar.append('   onmouseout=FW_startTimeout();');
menubar.append('   href="SearchStudioSpec.htm">');
menubar.append('<IMG height=21 src="images/products_button.gif" width=77 border=0 name=products_button></A></TD>');

menubar.append('<TD width=71 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_1,258,80);');
menubar.append('   onmouseout=FW_startTimeout(); ');
menubar.append('   href="SSKW-Solutions.htm">');
menubar.append('<IMG height=21 src="images/solutions_button.gif" width=69 border=0 name=partner_button></A></TD>');

menubar.append('<TD width=69 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_2,329,80);');
menubar.append('   onmouseout=FW_startTimeout();');
menubar.append('   href="SupportForm.htm">');
menubar.append('<IMG height=21 src="images/support_button.gif" width=71 border=0 name=support_button></A></TD>');

menubar.append('<TD width=69 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_3,388,80); ');
menubar.append('   onmouseout=FW_startTimeout(); ');
menubar.append('   href="Company.htm">');
menubar.append('<IMG height=21 src="images/company_button.gif" width=69 border=0 name=company_button></A></TD>');

menubar.append('<TD width=59 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_4,459,80); ');
menubar.append('   onmouseout=FW_startTimeout(); ');
menubar.append('   href="PressRelease1.htm">');
menubar.append('<IMG height=21 src="images/news_button.gif" width=59 border=0></A></TD>');

menubar.append('<TD width=69 height=16>');
menubar.append('<A onmouseover=window.FW_showMenu(window.fw_menu_5,530,80); ');
menubar.append('   onmouseout=FW_startTimeout(); ');
menubar.append('<A href="Purchase.htm" target=_top>');
menubar.append('<IMG height=21 src="images/buynow_button.gif" width=69 border=0 name=purchase_button></A></TD>');

menubar.append('<TD>');
menubar.append('<IMG height=21 src="images/blue-white-line-menu.gif" width=3></TD>');

menubar.append('<TD width=169 height=16>');
menubar.append('<IMG height=21 src="images/blue-menu-filler.gif" width=120></TD>'); // 132

menubar.append('<TD>');
menubar.append('<IMG height=21 src="images/download_button.gif" width=75 ');
menubar.append('     useMap=#m_blue-menu-filler-download border=0 name=blue-menu-filler-download></TD>');
menubar.append('</TD>');
menubar.append('</TR>');

menubar.append('</TBODY>');
menubar.append('</TABLE>');

menubar.append('<MAP name=m_blue-menu-filler-download><AREA shape=RECT coords=5,6,58,16 href="DownloadBuy.htm"></MAP>');

document.write(menubar.toString()); 
