function showResults(src, div) 
{
 
	var xhr_object = fAjaxInit()
	var position = div;
		
	xhr_object.open("GET", src, true);
	xhr_object.onreadystatechange = function()
	{
		if ( xhr_object.readyState == 4 )
		{
			document.getElementById(position).innerHTML = xhr_object.responseText;
		}
	}

	xhr_object.send(null);
}