function loadRecView() {
	if (window.XMLHttpRequest) {
		xmlhttp=new XMLHttpRequest();
	} else {
		xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
	}

	var CurrentHost=window.location;
	var urlStart="http://" + CurrentHost.hostname;
	var imgCheckPath=urlStart + "/ajaxrvcheck.php";
	var imgUpdatePath=urlStart + "/ajaxrecviewed.php";

	xmlhttp.open('GET', imgCheckPath, false);
	xmlhttp.send(null);
	var sOne=urlStart + "/" + xmlhttp.responseText;
	var sFirst;
	if(document.images) {
		sFirst=document.images['imgmrv1'].src;
	}
	
	if(sOne != sFirst) {
		xmlhttp.open('GET',imgUpdatePath,false);
		xmlhttp.send(null);
		document.getElementById('axrecview').innerHTML=xmlhttp.responseText;;
	}
}
