function submitkuponsklep()
{
	var kod = document.getElementById('kod').value;
	id = (new Date()).getTime();

	var req = mint.Request();
	req.OnSuccess = function() {
		data = this.responseText.split('\n\n');

		var komunikat= document.getElementById('komunikat');
		komunikat.innerHTML = data[0];

		if (this.responseText.indexOf("nieprawidłowy") == -1 &&
			this.responseText.indexOf("błąd") == -1 ) {
			var przyciski = document.getElementById('kupon_form');
			przyciski.innerHTML = '';
			var kod_kuponu = document.getElementById('kupon_kod');
			kod_kuponu.innerHTML = 'Kod kuponu: ' + data[1];

			location.reload(true);
		} 

	}
    
	req.AddParam("id", id);
   	req.Send("/kupon/sprawdz/kod/"+kod);
	return false;
}
