var fDesc=new Array();
fDesc[0] = "Features:
-Quick Search
Filter with ease through our massive database of business's with thr press of a button!
-Notifications
Events, specials, breaking news & more
-Business Profiles
Detailed information about products and/or services
-AB Directory
Detailed business directory for all your needs
-Click To Call
With one simple click, you will be on the phone getting the information you need.
-Events Calendar
Keep posted with all of Aruba's events and specials
-Website Links
Need more information? Everything that you need to know is a click away
-Latest News
Get the latest news feed from Aruba's most prominent news source.";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}