var proxmlHttp;
function createXMLHttp()
{
    if (window.ActiveXObject)
    {
        proxmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if (window.XMLHttpRequest)
    {
        proxmlHttp = new XMLHttpRequest();
    }
    else if (Msxml2.ActiveXObject)
    {
        proxmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    }
}

function DoStart()
{
    createXMLHttp();
	pollServer();				
	setInterval("pollServer()",4000);
}

function startCallback()
{
	if(proxmlHttp.readyState==4)
	{
		if(proxmlHttp.status==200)
		{
			var result=new String(proxmlHttp.responseText);
			if(result.indexOf("|")<0)
			{
				alert(result);
			}
			else
			{
				var array=result.split("|");
				document.getElementById("tdProcPic").innerHTML="<div align=\"center\"><a href=\"/product/product.aspx?id="+array[0]+"\" target=\"_blank\"><img src=\""+array[4]+"\" width=\"150\" height=\"179\" border=\"0\" alt=\""+array[1]+"\" title=\""+array[6]+"\"></a></div>"; 
				document.getElementById("tdProcName").innerHTML="<a href=\"/product/product.aspx?id="+array[0]+"\" target=\"_blank\">"+array[1]+"</a>";
				document.getElementById("tdCompany").innerHTML="<a href=\"/company/company.aspx?id="+array[3]+"\" target=\"_blank\">"+array[2]+"</a>";
				document.getElementById("tdArea").innerHTML=array[5];
			}
		}
	}
}

function pollServer()
{
	var url="/refurbish/productRef.aspx?timeSpan="+new Date().getTime();
	proxmlHttp.open("GET",url,true);
	proxmlHttp.onreadystatechange=startCallback;
	proxmlHttp.send(null);
}