<!--

function MakeArray(n)
 {
 this.length = n
 return this
 }

monthNames = new MakeArray(12)
monthNames[1] = "January"
monthNames[2] = "February"
monthNames[3] = "March"
monthNames[4] = "April"
monthNames[5] = "May"
monthNames[6] = "June"
monthNames[7] = "July"
monthNames[8] = "August"
monthNames[9] = "September"
monthNames[10] = "October"
monthNames[11] = "November"
monthNames[12] = "December"
dayNames = new MakeArray(7)
dayNames[1] = "Sunday"
dayNames[2] = "Monday"
dayNames[3] = "Tuesday"
dayNames[4] = "Wednesday"
dayNames[5] = "Thursday"
dayNames[6] = "Friday"
dayNames[7] = "Saturday"

function customDateString(oneDate)
 {
  var theMonth = monthNames[oneDate.getMonth() + 1]
  return theMonth + " " + oneDate.getDate() + ", " + oneDate.getYear()
 }
function customDayString(oneDate)
 {
  var theDay = dayNames[oneDate.getDay() + 1]
  return theDay
 }
function customYearString(oneDate)
 {
  return oneDate.getYear()
 }

function ergosolBodyTop(bodyHeading)
 {
 var theHeading = '<img src="images/rmrprt.bmp" border=0 width="600" height="147" alt="[Delivering the Right Message to the Right People at the Right Time]">'
 if (bodyHeading!='MAINPAGE')
  {
  theHeading = '<div align="center"><span class="datehome">' +
     customDayString(new Date()) + ', ' + customDateString(new Date()) +
     '</span><span class="bodyhdr"><p>' + bodyHeading + '</span></div>'
  }
 document.write('<table>')
 document.write('<tr>')
 document.write('<td>')
 document.write('<img src="images/ergologo_medium.jpg" width="202" height="54" alt="[Ergonomic Solutions Logo]"><br><img ')
 document.write('src="images/menu_space30.gif" width="30" height="20"><img ')
 document.write('src="images/menu_space30.gif" width="30" height="20"><img ')
 document.write('src="images/menu_space30.gif" width="30" height="20"><img ')
 document.write('src="images/menu_mainpage.gif" alt="[Main Page]" width="96" height="20" name="menu0" id="menu0"')
 document.write(' onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_products.gif" alt="[Products]" width="85" height="20" name="menu1" id="menu1"')
 document.write(' onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_services.gif" alt="[Services]" width="85" height="20" name="menu2" id="menu2"')
 document.write(' onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_downloads.gif" alt="[Downloads]" width="99" height="20" name="menu3" id="menu3"')
 document.write(' onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_contact.gif" alt="[Contact]" width="76" height="20" name="menu4" id="menu4"')
 document.write('onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_about.gif" alt="[About]" width="65" height="20" name="menu5" id="menu5"')
 document.write('onmouseover="showMenu(event)" onmouseout="hideMenu(event)"><img ')
 document.write('src="images/menu_bar.gif" width="16" height="20"><img ')
 document.write('src="images/menu_space30.gif" width="30" height="20"><br>' + theHeading)
 document.write('</td>')
 document.write('</tr>')
 document.write('</table>')
 return
 }

function ergosolBodyBottom()
 {
 document.write('<p>')
 document.write('<div align="center">')
 document.write('<span class="bodyftr">')
 document.write('&copy;&nbsp;' + customYearString(new Date()) + ' Ergonomic Solutions.&nbsp;&nbsp;All rights reserved.')
 document.write('&nbsp; &nbsp; ' + customDayString(new Date()) + ', ' + customDateString(new Date()) + '<br>')
 document.write('<a href="mailto:info@ergosol.com?subject=Info+requested+from+ERGOSOL+web+page">info@ergosol.com</a>')
 document.write(' - 1.800.ERGO.SOL - <a href="http://www.ergosol.com">www.ergosol.com</a>')
 document.write('</span>')
 document.write('</div>')
 return
 }

//-->




