function offerCallback(xmlHttp){
	if(xmlHttp.readyState == 4){
		if (xmlHttp.status == 200) { 
			var output=document.getElementById("offers");
			output.innerHTML=xmlHttp.responseText;
		}
	}
}


var d=document;
d.writeln('<div class="remas"><div id="offers"></div></div>');

AjaxReq('/xml/diskusijos/offers.php','offerCallback(xmlHttp)');


