function oylasana(site, company_ID){  
	var xmlHttp;
	var phplink;
	var servicetime = window.document.getElementById('speed');
	var price = window.document.getElementById('price');
	var delicious = window.document.getElementById('delicious');
	
	phplink = site + "rate.php?company_ID=" + company_ID + "&speed=" + servicetime.options[servicetime.selectedIndex].value + "&price=" + price.options[price.selectedIndex].value + "&delicious=" + delicious.options[delicious.selectedIndex].value;

	try{
		xmlHttp=new XMLHttpRequest();
	}
	catch (e){
		try{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e){
			try{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e){
				alert("Tarayiciniz AjaX desteklemiyor!");
				return false;
			}
		}
	}

	xmlHttp.onreadystatechange=function(){
		if(xmlHttp.readyState==4)
		{
			setINNER("performans",xmlHttp.responseText);
		}
		else
		{
			setINNER("performans", "Lütfen bekleyiniz..");
		}
	}

	xmlHttp.open("GET", phplink, true);
	xmlHttp.send(null);
}
