function showPopulatedDiv1(){
	//Effect.Fade('f_logo');
	var url3 = "ajax_featured_logo.php";
	http3.open("GET", url3, true);
	http3.onreadystatechange = handleHttpResponse_final2;
	http3.send(null);
	setTimeout('showPopulatedDiv1()', 10000);
}

function handleHttpResponse_final2() {
	if (http3.readyState == 4) {
		results_final = http3.responseText;
		document.getElementById('f_logo').style.display = 'none';
		document.getElementById('f_logo').innerHTML = results_final;
		Effect.toggle('f_logo','Appear');
	}
}






 
function getHTTPObject3() {
	var xmlhttp;
	
	var browser=navigator.appName;
	if(browser=="Microsoft Internet Explorer") {
		try {
			var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (E) {
				var xmlhttp = getHTTPObject();
			}
		}
	}
	else {
		if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
			try {
				xmlhttp = new XMLHttpRequest();
			} catch (e) {
				xmlhttp = false;
			}
		}
	}
	

	return xmlhttp;
}
var http3 = getHTTPObject3();



/*

try {
    var http3 = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
    try {
        var http3 = new ActiveXObject("Microsoft.XMLHTTP");
    } catch (E) {
        var http3 = getHTTPObject();
    }
}
*/