// JavaScript Document
function ajaxCallback(strURL, callBack) {
	var xmlhttp;
	if (window.XMLHttpRequest) {
	 xmlhttp=new XMLHttpRequest();
  }
	else if (window.ActiveXObject) {
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	else {
		alert("Your browser does not support XMLHTTP!");
	}
	xmlhttp.onreadystatechange=function() {
		if(xmlhttp.readyState==4) {
			callBack(xmlhttp.responseText);
		}
	}
	xmlhttp.open("GET", strURL,true);
	xmlhttp.setRequestHeader('Accept', 'bytes');
	xmlhttp.send(null);
}

function loadData(strContent) {
	document.getElementById('')
}

function mouseOverLink(strURL) {
	
}
