function addMoreBrand(no)
{
		var xmlHttp;
		if (window.XMLHttpRequest)
		{
			xmlHttp = new XMLHttpRequest();
		} else if (window.ActiveXObject)
		{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
			
		var parameters="?addNum="+no+"&type=brand";
		xmlHttp.open("GET","addMore.asp"+parameters,false);
		xmlHttp.send(parameters);
		document.getElementById("br").innerHTML = xmlHttp.responseText;
}

function addMoreDrugs(no)
{
		var xmlHttp;
		if (window.XMLHttpRequest)
		{
			xmlHttp = new XMLHttpRequest();
		} else if (window.ActiveXObject)
		{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
		}
			
		var parameters="?addNum="+no+"&type=drug";
		xmlHttp.open("GET","addMore.asp"+parameters,false);
		xmlHttp.send(parameters);
		document.getElementById("drug").innerHTML = xmlHttp.responseText;
}
