function displayWindow(b, d, a) {
	var c = window.open(b, "displayWindow", "width=" + d + ",height=" + a
			+ ",resizable=0,scrollbars=no,menubar=no")
}
function displayWindow2(b, d, a) {
	var c = window.open(b, "displayWindow", "width=" + d + ",height=" + a
			+ ",resizable=1,scrollbars=yes,menubar=yes")
}
function UpdateQty(b, a) {
	itemId = b.name;
	newQty = b.options[b.selectedIndex].text;
	document.location.href = "koszyk.php?action=update_item&prodid=" + itemId
			+ "&ilosc=" + newQty + "&m=" + a
}
function UpdateQtyRewrite(b, a) {
	itemId = b.name;
	newQty = b.options[b.selectedIndex].text;
	document.location.href = "/koszyk/zmien/" + itemId + "/" + newQty + "/" + a
}
function UpdateQtyShortRewrite(b, a) {
	itemId = b.name;
	newQty = b.options[b.selectedIndex].text;
	document.location.href = "/koszyk/zmien/" + itemId + "/" + newQty
};
window.addEvent('domready', function(){ 
var b = {
	"a.jpg" : {
		caption : "1"
	},
	"b.jpg" : {
		caption : "2"
	},
	"c.jpg" : {
		caption : "2"
	},
	"d.jpg" : {
		caption : "2"
	}	

};
var a = new Slideshow("fadeimg", b, {
	controller : false,
	loader : false,
	height : 410,
	hu : "/files/Image/",
	thumbnails : false,
	width : 1040
});
});
