/*************************************************************************
  This code is from Dynamic Web Coding at dyn-web.com
  Copyright 2003-5 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/

function doTooltip(e, msg) {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.clearTimer();
  var tip = document.getElementById? document.getElementById(Tooltip.tipID): null;
  if ( tip && tip.onmouseout == null ) {
      tip.onmouseout = Tooltip.tipOutCheck;
      tip.onmouseover = Tooltip.clearTimer;
  }
  Tooltip.show(e, msg);
}

function hideTip() {
  if ( typeof Tooltip == "undefined" || !Tooltip.ready ) return;
  Tooltip.timerId = setTimeout("Tooltip.hide()", 300);
}

// tooltip content variables
var msgHE5000 = '<span class=tipTitle>&nbsp;Honeywell Excel 5000 OPEN:</span><table cellpadding=4 width="500"><tr><td valign="top"><span class=tipText><ul><li>SymmetrE Front-end Software - Provides complete building integration</li><li>Echelon LonWorks - World-wide communication standard, future-proof flexibility to seamlessly expand, modify and integrate with Honeywell or other systems over a buildings entire lifecycle</li><li>Maximize overall energy efficiency with individual room conditions</li><li>Ethernet, LonWorks, BACnet, Modbus interfaces</li><li>Lighting control</li><li>Tenant override control, with remote monitoring and paging</li><li>Software runs on Windows 2000 or XP-based systems</li></ul></span></td></tr><tr><td valign="top" colspan="2"><span class=tipText><a href="mailto:info@buildingtechsystems.com">Contact us</a> today for details on the Honeywell Excel 5000 OPEN or any other product or service we provide.</span></td></tr></table>';

var msgWMaint = '<span class=tipTitle>&nbsp;Website Maintenance:</span><table cellpadding=4 width="400"><tr><td colspan=2><span class=tipText>Whether you need a one-time-only update to your site or regular maintenance, Microlinc is here to help.<span style=line-height:6px;><br><br></span>Common maintenance services Microlinc provides:</span></td></tr><tr><td valign="top"><blockquote><li>Adding pages/information</li><li>Uploading new photos</li><li>Adding website features</li></td><td valign="top"><li>Fixing problematic code</li><li>Consulting</li><li>And more!</li></blockquote></td></tr><tr><td valign="top" colspan="2"><span class=tipText><a href="contact.asp">Contact us</a> today for details of web maintenance services we can provide.</span></td></tr></table>';

var msgWDev = '<span class=tipTitle>&nbsp;Web Development:</span><table cellpadding=4 width="400"><tr><td colspan=2><span class=tipText>Want to add a little functionality to your website? Our highly skilled programmers can add any features you might need. Here are just a few of the many dynamic features Microlinc can help you add to your website:</span></td></tr><tr><td valign="top"><blockquote><li>Content Management Systems</li><li>Login Pages</li><li>Forms</li></td><td valign="top"><li>Calendars</li><li>Video</li><li>And more!</li></blockquote></td></tr><tr><td valign="top" colspan="2"><span class=tipText><a href="contact.asp">Contact us</a> today for details of web development services we can provide.</span></td></tr></table>';

var msgWDB = '<span class=tipTitle>&nbsp;Database Development:</span><table cellpadding=4 width="400"><tr><td colspan=2><span class=tipText>Microlinc can create and integrate databases into your website in order to create dynamic functionality. Databases allow you to use login pages, display product catalogs, calendars & schedules, track site visitors and much more.<span style=line-height:6px;><br><br></span>Our database developers can create customized database solutions to fit your business needs. We would be happy to provide a free consultation to help you determine whether database integration would benefit your website.<span style=line-height:6px;><br><br></span><a href="contact.asp">Contact us</a> today for more details about database development services we can provide.</span></td></tr></table>';


//var msgTerms = 'The code is free for <a href="http://www.dyn-web.com/bus/terms.html#personal">personal use</a> but all other uses require purchase of a <a href="http://www.dyn-web.com/bus/purchase.html">license</a>.';





