<!-- Begin
function setupDescriptions() {
var x = navigator.appVersion;
y = x.substring(0,4);
if (y>=4) setVariables();
}
var x,y,a,b;
function setVariables(){
if (navigator.appName == "Netscape") {
h=".left=";
v=".top=";
dS="document.";
sD="";
}
else 
{
h=".pixelLeft=";
v=".pixelTop=";
dS="document.";
sD=".style";
   }
}
var isNav = (navigator.appName.indexOf("Netscape") !=-1);
function popLayer(a){
desc = "<table  border=0 width=170><td class='rolloverBlue'>";

if (a==1) desc += "Find out about Menus That Talk™ systems and what they can do for you; installations, subscription plans, accessories, staff training.";
if (a==2) desc += "Make A Menu™, translation service, voice, updates, marketing material; leasing options.";
if (a==3) desc += "MTT's history: our dedication to innovation and our vision; applications, community, who we are.";
if (a==4) desc += "Patent-pending authoring that lets restaurants design Menus That Talk to their exact specifications.";
if (a==5) desc += "Press releases, coming events calendar, seminars, trade shows, press coverage.";
if (a==6) desc += "Password-protected area for clients, entry to Make-A-Menu™.";
if (a==7) desc += "How to reach Staff and Sales at Menus That Talk, email, phone, fax, ground/shipping address.";

desc += "</td></table>";

if(isNav) {
document.object1.document.write(desc);
document.object1.document.close();
document.object1.left=x+25;
document.object1.top=y;
}
else {
object1.innerHTML=desc;
//eval(dS+"object1"+sD);
//eval(dS+"object1"+sD);
  }
}
function hideLayer(a){
if(isNav) {
eval(document.object1.top=a);
}
else object1.innerHTML="";
}
function handlerMM(e){
x = (isNav) ? e.pageX : event.clientX;
y = (isNav) ? e.pageY : event.clientY;
}
if (isNav){
document.captureEvents(Event.MOUSEMOVE);
}
document.onmousemove = handlerMM;
//  End -->


