﻿function $(id){        
    return document.getElementById(id);
} 

advAJAX.setDefaultParameters({
  onInitialization : function(obj) { $(obj.tag).innerHTML = "Przygotowanie..."; },
  onLoading        : function(obj) { $(obj.tag).innerHTML = "Przetwarzanie..."; },
  onSuccess        : function(obj) { $(obj.tag).innerHTML = obj.responseText; },
  onError          : function(obj) { alert("Błąd...: " + obj.status); }
});

/*
* funkcja zamowienie pompony
*/
function zamowienie(frame, opcja)
{
	advAJAX.setDefaultParameters({
//		onSuccess        : function(obj) { document.getElementById(obj.tag).innerHTML = document.getElementById(obj.tag).innerHTML + obj.responseText; }
		onSuccess        : function(obj) { $("zamowienie").innerHTML = obj.responseText; }
		//onSuccess : function(o) {alert(o.responseJSON.message);
	});
	advAJAX.get({ url: "./db/zamowienie.php?opcja="+opcja, tag: frame });
};

function wysylanie()
{
	advAJAX.assign($("submit_zamowienie"), { 
		onInitialization : function(obj) { $("zamowienie").innerHTML = "Przygotowanie..."; },
		onSuccess : function(obj) {	
			alert("onSucces");
		},
		onError   : function(obj) { 
			alert("Błąd...: " + obj.status); 
		}
	}
	);
};

function popup()
{
	$("popup").style.visibility="visible";
	$("popup").style.width="415px";
	$("popup").style.border="1px solid black";
	$("popup").style.background="#fff";
	$("popup").style.top="150px";
	$("popup").style.textAlign="right";
	$("popup").style.fontWeight="bold";
	$("popup").style.fontSize="16px";
	$("close").innerHTML="X&nbsp;";
	$("close").style.cursor="pointer";
//	$("close").style.border="1px solid black";
	advAJAX.setDefaultParameters({
		onSuccess        : function(obj) { $("pop").innerHTML = obj.responseText; }
	});
	advAJAX.get({ url: "./zyczenia/zyczenia.html", tag: $("pop") });
};
function killpop()
{
	$('popup').style.visibility='hidden';
	$("pop").innerHTML = "";
}