//=================| UC LOCAL LINK EXCHANGE / Uclocal Free Link Exchange CLIENT CODE |=================='
//=================| File info ( Date created: 24/08/2010, Version: 1.0 ) |====================='
//----------------------------------------------------------------------------------------------'
window.onload=ajaxFunction;
function ajaxFunction()
{
var xmlhttp;
if (window.XMLHttpRequest){
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject){
// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
else{
alert("Your browser does not support XMLHTTP!");
}
xmlhttp.onreadystatechange=function(){
if(xmlhttp.readyState == 1){
document.getElementById("UclocalBusinessDirectoryBoltOn").innerHTML="<img src='/loading_uclocal.gif' border='0' alt='Loading' />";
}
if(xmlhttp.readyState==4){document.getElementById("UclocalBusinessDirectoryBoltOn").innerHTML=xmlhttp.responseText;
}}
var urlQS="Business-Directory.asp";
urlQS = urlQS + window.location.search;
xmlhttp.open("GET", urlQS ,true);
xmlhttp.send(null);
}
//Need more help? Email Link Exchange Technical Support
//Thank you for downloading link exchange business directory BOLT ON

