var news_prenum_xmlHttp;

function news_prenum_uzsakyti(email)
{
	news_prenum_xmlHttp=GetXmlHttpObject();
	if (news_prenum_xmlHttp==null)
	{
		alert ("Your browser does not support AJAX! Please, update Your browser.");
		return;
	}
	
	var url="inc_diz_news_prenum_ajax_re.php";
	url=url+"?email="+email;
	url=url+"&randsid="+Math.random();
	news_prenum_xmlHttp.onreadystatechange=function()
	{
		news_prenum_stateChanged();
	}
	news_prenum_xmlHttp.open("GET",url,true);
	news_prenum_xmlHttp.send(null);
}

function news_prenum_stateChanged()
{ 
	if (news_prenum_xmlHttp.readyState==4)
	{
		if (news_prenum_xmlHttp.responseText != '') document.getElementById("news_prenum_talpykla").innerHTML=news_prenum_xmlHttp.responseText;
	}
}

function GetXmlHttpObject()
{
	var bendras_xmlHttp=null;
	try
	{
		// Firefox, Opera 8.0+, Safari
		bendras_xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		// Internet Explorer
		try
		{
			bendras_xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			bendras_xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		}
	}
	return bendras_xmlHttp;
}