function marque()
{
	
	var xmlhttp = (window.XMLHttpRequest) ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
	xmlhttp.open("GET", "content.txt", true);
	xmlhttp.onreadystatechange = function() {
	    var txt1 = " ";
	    var txt = " ";
	    var space = '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;';

	    if (xmlhttp.readyState == 4) {

	        txt = xmlhttp.responseText;

	        for (i = 0; i < 20; i++) {
	            txt1 = txt1 + txt + space;

	        }
	        document.getElementById("marqueid").innerHTML = txt1;
	    }

	}
	xmlhttp.send(null);
	
}


