//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 : "<h3>VeroNobis Inc.</h3> <p>This page is currently under construction, thank you. </p>" ;
	}
}

function set_loading_message(msg) {
 	please_wait = msg;
}

