function showLargePopup() {
		var popLarge = document.getElementById('akcijos');
	 
		getSize();
		
		popLarge.style.left = ((myWidth - popLarge.offsetWidth) / 2) + 'px';
		popLarge.style.top = (((myHeight - popLarge.offsetHeight) / 2) + myScroll) + 'px';
		popLarge.style.visibility = 'visible';
}

function hideLargePopup() {
    var popLarge = document.getElementById('akcijos');
	
    popLarge.style.visibility = 'hidden';
}

function siustiDuomenis()  {
	xmlHttp=GetXmlHttpObject()
	xmlHttp.onreadystatechange = stateChanged;
	var url="ajax.php";
	url=url+"?name="+document.nuolaida.vardas.value;
	url=url+"&data="+document.nuolaida.duomenys.value;
	xmlHttp.open("GET",url,true);
	xmlHttp.send(null);
}