	function showBrand(){
	imgs="<img src='ajax-loader.gif'><img src='loading.gif'>";
//	alert(document.getElementById("manufacture_id").value);
document.getElementById("model_id").innerHTML="<p style='margin-top:-10px'></p>";
	if(document.getElementById("manufacture_id").value!=0){
		xmlHttp=ajaxFunction();
		
		xmlHttp.onreadystatechange=function(){
				
			if(xmlHttp.readyState==1){
				//	alert("Has been set up");

				document.getElementById("brand_id").innerHTML=imgs;
			}
			if(xmlHttp.readyState==4){

				document.getElementById("brand_id").innerHTML=xmlHttp.responseText;			

			}
		}
		var url="asp/DellMemorySystem.asp";
		str=document.getElementById("manufacture_id").value;
		s="brand";
		url=url+"?v="+ str+"&v1=43&show="+ s +"";
	//	alert(url);
		xmlHttp.open("GET",url,true);
	   	xmlHttp.send(null);		
	 }
	 else{

		document.getElementById("brand_id").innerHTML="<p style='margin-top:-10px'></p>";
		document.getElementById("model_id").innerHTML="<p style='margin-top:-10px'></p>";
						
	 }
	
}
	function showModel(){
	imgs="<img src='ajax-loader.gif'><img src='loading.gif'>";
//	alert(imgs);
	if(document.getElementById("bnd_id").value!=0){
		
		
				xmlHttp=ajaxFunction();
			
			xmlHttp.onreadystatechange=function()
		      	{
					if(xmlHttp.readyState==1)
					{
				
						document.getElementById("model_id").innerHTML=imgs;
						
					}
		      		if(xmlHttp.readyState==4)
		        		{

		        		
					
		        			document.getElementById("model_id").innerHTML=xmlHttp.responseText;
		        			
		        		}
		      	}
		      	var url="asp/DellMemorySystem.asp";
		      	str=document.getElementById("bnd_id").value;
		      	str1=document.getElementById("manufacture_id").value;
		      	str=str.replace("+","%20");
				url=url+"?v="+str+"&v1="+str1+"&v2=43&show=modeldtls";
	//		alert(url);
			xmlHttp.open("GET",url,true);
		    xmlHttp.send(null);
			 
			  }
	 else{	
				document.getElementById("model_id").innerHTML="<p style='margin-top:-10px'></p>";
				
	 }
	}
function showPage(){
	
	modelName=document.getElementById("mod_dtls_id").value;
//	alert(modelName);

	window.location.href = modelName;
}
  