function LiveSearch(filename) {
	document.getElementById('response').innerHTML="<table width='193' border='0' cellpadding='0' cellspacing='0'><tr><td height='98'><div align='center'><img src='pic/loading.gif' width='32' height='32'></div></td></tr></table>";
   // DisplayResuls will handle the Ajax response
   ajaxCallback = DisplayResults;
   // Send the Ajax request
   ajaxRequest(filename);
}
// Display search results
function DisplayResults() {
	document.getElementById('response').innerHTML=ajaxreq.responseText;
}

