function startRequest() {
	tfURLText = document.getElementById('tfURL').value;
		
	url = "http://www.pageranktester.pl/include/check.php?url=" + tfURLText;
	url = encodeURI(url);
	
	div = document.getElementById('dataDiv');
	div.innerHTML = "Sprawdzam ...";
	
	startGETRequest(url, onComplete, onEnd);
}

function onComplete(text, xml) {
	var div = document.getElementById('dataDiv');
	div.innerHTML = text;
}

function onEnd() {
	return true;
}
