function setInputColor(target, stat) {
	if (stat == 'inactive')
	{

		target.style.color = '#A4A4A4';
		target.style.backgroundColor = '#F5F5F5';

	} else {


		target.style.color = '#535353';
		target.style.backgroundColor = '#FFFFFF';

	}
}
function showAlternateAdress(target) {
	
	if (target != null)
	{
	
	var name_txt = document.getElementById('alternate_name');
	var adress_txt = document.getElementById('alternate_adress');
	var city_txt = document.getElementById('alternate_city');
	var postcode_txt = document.getElementById('alternate_postcode');
	var country_txt = document.getElementById('alternate_country');

	//
	var input_name = document.getElementById('drugie_imieinazwisko');
	var input_adress = document.getElementById('drugi_adres');
	var input_city = document.getElementById('druga_miejscowosc');
	var input_postcode = document.getElementById('drugi_kod');
	var input_country = document.getElementById('drugi_kraj');
	if (target.checked)
	{
		name_txt.style.color = "#4C4C4C";
		adress_txt.style.color = "#4C4C4C";
		city_txt.style.color = "#4C4C4C";
		postcode_txt.style.color = "#4C4C4C";
		country_txt.style.color = "#4C4C4C";
		

		input_name.disabled = false;
		input_adress.disabled = false;
		input_city.disabled = false;
		input_postcode.disabled = false;
		input_country.disabled = false;
		

		setInputColor(input_name, 'active');
		setInputColor(input_adress, 'active');
		setInputColor(input_city, 'active');
		setInputColor(input_postcode, 'active');
		setInputColor(input_country, 'active');
	} else {
		
		adress_txt.style.color = "#A5A5A5";
		name_txt.style.color = "#A5A5A5";
		city_txt.style.color = "#A5A5A5";
		postcode_txt.style.color = "#A5A5A5";
		country_txt.style.color = "#A5A5A5";

		input_name.disabled = true;
		input_adress.disabled = true;
		input_city.disabled = true;
		input_postcode.disabled = true;
		input_country.disabled = true;
		
		setInputColor(input_name, 'inactive');
		setInputColor(input_adress, 'inactive');
		setInputColor(input_city, 'inactive');
		setInputColor(input_postcode, 'inactive');
		setInputColor(input_country, 'inactive');

			
			
		
		}
		}
}
function submitNewCountry(target) {
	var trg = document.getElementById('drugi_kraj');
	var checkbox = document.getElementById('inny_adres')
	if (checkbox.checked)
	{
		alert('submitowanie forma');
	}
}