var xmlHttpThird
var domain="http://www.petel-design.com/";

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

function showHomeImage(imag_num)
{
	//alert("helo");
	xmlHttpThird=GetThirddXmlHttpObject();
	if (xmlHttpThird==null)
	{
	  alert ("Your browser does not support AJAX!");
	  return;
	}
	var url=domain+"product-tabs/home-image-rotate.php";
	url=url+"?lang="+lang+"&image="+imag_num;
	xmlHttpThird.open("GET",url,true);
	xmlHttpThird.onreadystatechange=proHomeImageChanged;
	xmlHttpThird.send(null);
}
function proHomeImageChanged() 
{ 
	if (xmlHttpThird.readyState==4)
	{ 
		document.getElementById("homeMainImage").innerHTML=xmlHttpThird.responseText;
	}
}
