var BaseUrl	= "http://api.microsofttranslator.com/V2/Ajax.svc/Translate?oncomplete=mycallback";
var Api	= "26E9F61F94C3F5844EB342FD218B9B930386F45F";

window.onload = function translate() {
	document.getElementById('translation').innerHTML = "Trwa tłumaczenie... Proszę czekać...";
	var text = document.getElementById('Text').value;
	var sourLang = document.getElementById('SrcLan').value;
	var destLang = document.getElementById('DstLan').value;
	
		if (text == ""){
			document.getElementById('translation').innerHTML = "Wpisz tekst do przetłumaczenia [...]";
			document.getElementById('Text').focus();
			return false;
		}
		if (text.length < 3) {
			document.getElementById('error').innerHTML = "Uwaga! Wyraz powinien się składać co najmniej z 3 znaków. Spróbuj ponownie...";
			return false;
		}

	window.mycallback = function(response) {
		document.getElementById('translation').innerHTML=response;
	}
	
	
	var s = document.createElement("script");
	s.src = BaseUrl + "&appId=" + Api + "&from=" + sourLang + "&to=" + destLang + "&text=" + text;

	document.getElementsByTagName("head")[0].appendChild(s);
}
