﻿ function NewEntryToggle(e){var exists;exists = eval(document.getElementById(e));if(exists){var obj;obj = document.getElementById(e);if (obj.title == ' '){obj.title = '';obj.style.display = '';}else{obj.title = ' ';obj.style.display = 'none';}}}
 function GetXmlHttp(){var x = null;try{x = new ActiveXObject("Msxml2.XMLHTTP");}catch (e){try{x = new ActiveXObject("Microsoft.XMLHTTP");}catch (e){x = null;}}if (!x && typeof XMLHttpRequest != "undefined"){x = new XMLHttpRequest();}return x;}
 function DisplayQueryResults(object,htmlResult) {document.getElementById(object).innerHTML = htmlResult;}
 function DoAjaxQuery(object,url){
   document.getElementById(object).innerHTML = "<IMG alt=\"Processing\" src=\"http://www.firstorlando.com/images/waiting.gif\">";
   var xmlhttp = GetXmlHttp();
   if (xmlhttp){
     xmlhttp.open("GET", url, true);  // varAsync = true;      
     xmlhttp.onreadystatechange = function(){if (xmlhttp.readyState == 4){var result = xmlhttp.responseText;eval(result);}}            
     xmlhttp.send(null);
   }
  }//DoAjaxQuery	