// JavaScript Document
function send_butiuqs(brand, city)
{
	var brand_id = brand;
	var city_id = city;
	
	document.send_abfrage.send_brand_id.value= brand_id;
	document.send_abfrage.send_city_id.value= city_id;	
	document.send_salon.submit();
}

function get_data(aktion, value, div_yes, div_none)
	{
		document.getElementById(div_yes).className="div_yes";
		document.getElementById(div_none).className="div_none";
		document.getElementById(div_none).innerHTML="";
		var loc='iframes/i_get_count.php?aktion=' + aktion + '&znachenie=' + value;		
		window.frames['get_count'].location.href = loc;	
	}
	
	
function get_city(value)
	{
		if(document.getElementById("set_brand").value==0)
		{
		var loc='iframes/i_get_count.php?aktion=get_city&znachenie=' + value;	
		window.frames['get_reg'].location.href = loc;
		}
	}
function get_brand(value)
	{
		if(document.getElementById("set_city").value==0)
		{
		var loc='iframes/i_get_count.php?aktion=get_brand&znachenie=' + value;	
		window.frames['get_reg'].location.href = loc;	
		}
	}
function send_mag_form(){
	var url = "but_brand_"+ document.getElementById('brand').value + "-but_city_" + document.getElementById('city').value + ".html";
	location.href=url;
}	

