	function showManufacture(){
	
	if(document.getElementById("system_id").value!=0){
			imgs="<img src='ajax-loader.gif'><img src='loading.gif'>";
			//alert(document.getElementById("system_id").value);	
			xmlHttp=ajaxFunction();
			
	//document.getElementById("ciscomodels").innerHTML="<p style='margin-top:-10px'></p>";
		xmlHttp.onreadystatechange=function()
				{
				if(xmlHttp.readyState==0)
					{
						alert("Not Intialised");
					}
					if(xmlHttp.readyState==1)
					{
						//alert("Has been set up" +xmlHttp.responseText);
						document.getElementById("ciscomodels").innerHTML=imgs;
					}
					
					if(xmlHttp.readyState==2)
					{
					///alert("Has been sent");
					}
					if(xmlHttp.readyState==3)
					{
					//alert("In process....");
					}
					
					if(xmlHttp.readyState==4)
					{
	
					//alert(xmlHttp.responseText);
						document.getElementById("ciscomodels").innerHTML=xmlHttp.responseText;
						
						
						//ciscomodels.style.visibility="visible";						
					}
			}	
      	var url="CiscoSelector.asp";
      	str=document.getElementById("system_id").value;
		url=url+"?v="+ str +"&show=manufacture";
		//alert(document.getElementById("system_id").value);
	xmlHttp.open("GET",url,true);
    xmlHttp.send(null);
	}
	 else{
				
				document.getElementById("ciscomodels").innerHTML="<p style='margin-top:-10px'></p>";
			//	
	 }
	}



function go(){
	
	if (document.getElementById("cisco_id").value==0)
	{
		alert("Please select a system model.");
		return false;
	}
	ciscoid=document.getElementById("cisco_id").value;
	ciscopage="http://www.ciscomemoryupgrade.com/Cisco_Memory.asp?id="+ciscoid+"&parent=0"
	window.location.href = ciscopage;
}