function loadinc(myUrl,myField,options) 
{

num =   Math.ceil(Math.random()*1000000);
strurl =  myUrl + '?n=' + num + '&' + options;

var Field = document.getElementById(myField); 

	if(window.XMLHttpRequest) {
		xmlhttp = new XMLHttpRequest(); 
	} else if(window.ActiveXObject) {
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	} else {
		return false;
	}	
	
	num =   Math.ceil(Math.random()*1000000);
	xmlhttp.open("GET", strurl,true);

	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState == 4) { 
			Field.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null); 
}

