function loadPanel_ifYouAreNot() {
	var content = '';
	var URL = unescape(location.href);
	var SCRIPTEXE = 'sub_webcart_ifYouAreNot.php';
	if (URL == 'http://www.iowa80.com/') {
		SCRIPTEXE = 'DirectionsWEB/sub_webcart_ifYouAreNot.php';
	}
	doLoadPanelIfYouAreNotPost(SCRIPTEXE, content, 'processLoadPanelIfYouAreNot');
}

function processLoadPanelIfYouAreNot(result) {
	document.getElementById('contentArea_ifYouAreNot').innerHTML = result;
}

function doLoadPanelIfYouAreNotPost(url, content, callback_name) {

	var async_requestLoadPanelIfYouAreNot = false;
	try {
		// Firefox, Opera 8.0+, Safari, IE7+
		async_requestLoadPanelIfYouAreNot = new XMLHttpRequest();
	}
	catch (e) {
		// Internet Explorer
		try {
			async_requestLoadPanelIfYouAreNot = new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {
			async_requestLoadPanelIfYouAreNot = new ActiveXObject("Microsoft.XMLHTTP");
		}
	}

	async_requestLoadPanelIfYouAreNot.open('POST', url, true);
	async_requestLoadPanelIfYouAreNot.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
	async_requestLoadPanelIfYouAreNot.onreadystatechange = function() {
		if (async_requestLoadPanelIfYouAreNot.readyState == 4) { 
			if (async_requestLoadPanelIfYouAreNot.status == 200) {
				response_content = async_requestLoadPanelIfYouAreNot.responseText;
				eval(callback_name + '(response_content);');
			}
		}
	}
	async_requestLoadPanelIfYouAreNot.send(content);
}

