var xmlHttp;
function DynaImageCreater()
{
xmlHttp=GetXmlHttpObject()
	if (xmlHttp==null)
	{
		alert ("Browser does not support HTTP Request");
		return
	} 

	
	var url="http://www.justamerica.co.uk/javascript/banner_image.php";
	value='';
	xmlHttp.onreadystatechange=createImage;
	xmlHttp.open("POST",url,true);
	
    xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	xmlHttp.send(value);	
}
	
	function createImage() 
	{ 
	if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
	{
		if(xmlHttp.responseText)
		{
		document.getElementById("imageSlideshowHolder").innerHTML=xmlHttp.responseText;	
		//call image slise show..
		initImageGallery();

		}
	} 
}	


function GetXmlHttpObject()
{
	var xmlHttp=null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return xmlHttp;
}

