        function okno(url,opcje,id) {
            window.open(url,id,opcje,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes');
        }

	function encodeString(text) {
		encoded = text.replace("///g","%2F");
		encoded = encoded.replace("/?/g","%3F");
		encoded = encoded.replace("/=/g","%3D");
		encoded = encoded.replace("/&/g","%26");
		encoded = encoded.replace("/#/g","%23");
		encoded = encoded.replace("/@/g","%40");
		encoded = encoded.replace("/r/g","");
		encoded = encoded.replace("/n/g","%0A");
		return encoded;
	}

	function sendForm() {

		var id = document.getElementById('select_type').options.selectedIndex;
		var type = document.getElementById('select_type').options[id].value; 					
		id = document.getElementById('select_what').options.selectedIndex;
		var what = document.getElementById('select_what').options[id].value;					
		var postal = document.getElementById('Client_Postal').value;
		var name = document.getElementById('Client_Name').value;
		var tel = document.getElementById('Client_Tel').value;
		var desc = document.getElementById('Client_Description').value;
		desc = encodeString(desc);
		var lang = document.getElementById('lang').value;

                okno('wycena.php?type=' + type + '&what=' + what + '&name=' + name + '&tel=' + tel + '&desc=' + desc + '&lang=' + lang,'height=120,width=200');
		//window.self.location = 'wycena.php?type=' + type + '&what=' + what + '&name=' + name + '&tel=' + tel + '&desc=' + desc;

	}

	function sendEmail() {

		var email = document.getElementById('email').value;
		if(email != '') {
			window.frames['remoteFrame'].location = 'remote.php?action=sendemail&email=' + email;
		}
		else {
			alert('Wprowadz najpierw swoj adres email! / Enter your email address first!');
			return false;
		}

	}

