function initialize()
{
	var url;
	var xmlhttp;
    
	try
	{
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
	    try
	    {
		    xmlhttp = new XMLHttpRequest();
	    }
	    catch(f)
	    {
	        try
	        {
	            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	        }
	        catch(g)
	        {
	            alert("Your browser does not support AJAX!");
	        }
	    }
	}

	url = "products.asp?q=" + document.getElementById("productline").value + "&sid=" + Math.random();

	xmlhttp.onreadystatechange=function()
	{
		if (xmlhttp.readyState==4)
		{
		    //alert(xmlhttp.responseText);
			document.getElementById("div1").innerHTML=xmlhttp.responseText;
		}
	}
	
	xmlhttp.open("GET", url, true);
	xmlhttp.send(null);
}