function search(){
			xmlHttp=ajaxFunction();
	
			xmlHttp.onreadystatechange=function()

				{


				if(xmlHttp.readyState==1)
        				{
					//alert("Has been set up");
	
					document.getElementById("ModelNames").innerHTML="<font face=arial size=2>Loading... </a><img src='http://www.memorystock.com/ajax-loader.gif'><img src='http://www.memorystock.com/loading.gif'>";
			
				}

				if(xmlHttp.readyState==4)
					{
var cometo=xmlHttp.responseText;
//alert(cometo);
document.getElementById("ModelNames").innerHTML=cometo;
//alert("Please edit the database connection");
					
					}
				}
			url="http://www.hpcomputermemory.com/asp/searchprocess.asp?modelname="+document.getElementById("ModelName").value;
			xmlHttp.open("GET",url,true);
	   		xmlHttp.send(null);
	
		}
	

function show1(id){
//alert(id);
	xmlHttp=ajaxFunction();
	
			xmlHttp.onreadystatechange=function()
{

				
				if(xmlHttp.readyState==1)
        				{
					//alert("Has been set up");
	
					document.getElementById("ModelResult").innerHTML="<font face=arial size=2>Loading... </a><img src='http://www.memorystock.com/ajax-loader.gif'><img src='http://www.memorystock.com/loading.gif'>";
			
				}


				if(xmlHttp.readyState==4){
					document.getElementById("ModelResult").innerHTML=xmlHttp.responseText;
					//alert("Please edit the database connection");
					
				}
			}
			url=id;
alert (url);
			xmlHttp.open("GET",url,true);
	   		xmlHttp.send(null);
	}
