function getObject(){
	var xmlhttp;
	if (window.XMLHttpRequest) {		// code for IE7+, Firefox, Chrome, Opera, Safari
		xmlhttp=new XMLHttpRequest();
	} 
	else {
		if (window.ActiveXObject) {		// code for IE6, IE5
			xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
		} else {						// code for nothing :-)
			alert("Váš prehliadač nepodporuje aktívne objekty!");
		}
	}
	return xmlhttp;
}

function verify(email) {
	var xmlhttp = getObject();
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState==4) {
			document.getElementById('email_verify').innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","ajax/verifyEmail.php?email="+email+"&protectInclude=true",true);
	xmlhttp.send(null);
}	

function insertShout(name, text) {
	var meno = document.getElementById('shoutMeno').value;
	var text = document.getElementById('shoutText').value;
	var xmlhttp = getObject();
	xmlhttp.onreadystatechange = function(){
		if(xmlhttp.readyState==4) {
			document.getElementById('boardPadding').innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","ajax/shoutboard.php?meno="+meno+"&text="+text,true);
	xmlhttp.send(null);
	document.getElementById('shoutMeno').value = "";
	document.getElementById('shoutText').value = "";
}	
