
//=============== dodawanie do koszyka =========================
function cartAdd (item1,item2,path,sessid) {
 	ajax = new sack();
	ajax.setVar("item1", item1);
	ajax.setVar("item2", item2);
	ajax.setVar("phpsessid", sessid);	
	ajax.setVar("path", path);
	ajax.requestFile = path+'cart_server.php';
	ajax.method = 'POST';
	ajax.element = 'monitor_tekst';	
	ajax.onLoading = whenLoading (path);
	ajax.onCompletion = whenCompleted ();
	ajax.runAJAX();
}

function whenLoading (path) {
	winW = document.body.offsetWidth;
  	winH = document.body.offsetHeight;
	with (document.getElementById('monitor')) {
		style.visibility = 'visible';
		style.display = 'block';
		style.left = (winW/2-100)+'px';
		//style.top = (winH/2-350)+'px';
	}
	document.getElementById(ajax.element).innerHTML = 'adding item<br><img src="'+path+'img/indicator_orange.gif" style="padding-top: 0px">';
}

function whenInteractive () {
	alert ('interactive');
}

function whenCompleted () {
	var juz = false;
	if (!juz) {
		setTimeout ("hideMonit()", 12000);
		juz = true;
	}
}

function hideMonit () {
	with (document.getElementById('monitor')) {
		style.visibility = 'hidden';
		style.display = 'none';
	}	
}

// ============================================================
