function orderitem(){
	
		imgs="<img src=http://www.memorystock.com/images/circle-loading.gif>"
				
		xmlHttp=ajaxFunction();
			
		xmlHttp.onreadystatechange=function()
				{
					if(xmlHttp.readyState==0)
					{
						alert("Not Intialised");
					}

					if(xmlHttp.readyState==1)
					{
					//	alert("Has been set up" +xmlHttp.responseText);
						document.getElementById("memorylist").innerHTML=imgs;
					}
					
					if(xmlHttp.readyState==2)
					{
					//alert("Has been sent");
					}

					if(xmlHttp.readyState==3)
					{
					//alert("In process....");
					}
					
					if(xmlHttp.readyState==4)
					{
					document.getElementById("memorylist").innerHTML=xmlHttp.responseText;
					}
				}	
      	var url="../asp/orderitem.asp";
      	modelid1=document.getElementById("modelid").value;
	mnfId1=document.getElementById("mnfId").value;
	itemid1=document.getElementById("itemid").value;

		url=url+"?MdlId="+ modelid1 +"&MnfId="+ mnfId1 +"&itemid="+ itemid1;
		//alert(url);
	xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
	}