<!--

	function addProduct(id) {

		var req = new Subsys_JsHttpRequest_Js();
		req.onreadystatechange = function() {
			if (req.readyState == 4) {
				if (req.responseJS) {
					
					res = req.responseJS;
					
					document.getElementById('cartOut').innerHTML = unescape(res.html);
					return true;
					
				}
			}
		}
		req.caching = false;
		req.open('POST', '/mod_cart/addproduct.php', true);
		req.send({ id: id });

	}


	function getPosition(obj) {
		var x=0, y=0;
		while(obj) {
			x+=obj.offsetLeft;
			y+=obj.offsetTop;
			obj=obj.offsetParent;
		}
		return {x: x, y: y};
	}

	function prodInfo(id) {
		page = "/mod_apteka/quickview.php?id=" + id;
		x=(screen.width-700)/2
		y=(screen.height-600)/2
		open(page , "prodinfo" , "menubar=no, toolbar=no, width=700, height=510, status=yes, resizable=no, top="+y+", left="+x);
	}
	
	function quickview(id) {
		page = "/mod_xcat/quickview.php?id=" + id;
		x=(screen.width-700)/2
		y=(screen.height-600)/2
		open(page , "333" , "menubar=no, toolbar=no, width=700, height=510, status=yes, resizable=no, top="+y+", left="+x);
	}

	function openpic(cat,num) {
		open("/mod_gallery/viewpic.php?num=" + num + "&cat=" + cat,"_blank","toolbar=no, scrollbars=yes");
	}

	function openpiccat(picname) {
		picn = "/mod_xcat/viewpic.php?id=" + picname;
		x=(screen.width-700)/2
		y=(screen.height-600)/2
		open(picn , "222" , "menubar=no, toolbar=no, width=700, height=510, status=yes, resizable=no, scrollbars=yes, top="+y+", left="+x);
	}

//-->
