//Omni Ajax Site-Nav Menu is yours for the taking - Please do not modify any of ths script http://www.omnisourceit.com
var please_wait = null;

function open_url(url, target) {
 	if ( ! document.getElementById) {
  		return false;
 	}

 	if (please_wait != null) {
  		document.getElementById(target).innerHTML = please_wait;
 	}

 	if (window.ActiveXObject) {
  		link = new ActiveXObject("Microsoft.XMLHTTP");
 	} else if (window.XMLHttpRequest) {
  		link = new XMLHttpRequest();
 	}

 	if (link == undefined) {
  		return false;
 	}
 	link.onreadystatechange = function() { response(url, target); }
 	link.open("GET", url, true);
 	link.send(null);
}
//change text below to your liking
function response(url, target) {
 	if (link.readyState == 4) {
	 	document.getElementById(target).innerHTML = (link.status == 200) ? link.responseText : "<h1>AJAX Development</h1> <p>What this link is for, is anything that you can imagine web vistors want to interact with on the web. A series of menus, photo galleries, free downloads, your offerings, products, services ... you get the point. AJAX adds richer interaction between your site &amp; your site's guests.  <a href='javascript:void(0)' onclick='open_url('ajax/web-development.html','my_site_content');' title='...Looking for more info on AJAX?'><span style='font-size:9px; color:#FFCC00;'>...Looking for more info on AJAX?</span></a> .</p>" ;
	}
}

function set_loading_message(msg) {
 	please_wait = msg;
}

