
	function check_email(e)
	{
		var xmlhttp = new createXMLHTTPObject();
		xmlhttp.open( "GET", 'http://godi.pl/_ajax/checker.php?what=check_email&val='+e.value, false);
		xmlhttp.send(null);
		document.getElementById( 'email-correct' ).innerHTML = xmlhttp.responseText;
		xmlhttp.close();
	}
