
function displayWindow(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no' );
};


function displayWindow2(url, width, height) {
        var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=yes' );
};



function UpdateQty(item)
	{
	itemId = item.name;
	newQty = item.options[item.selectedIndex].text;
				
	document.location.href = 'koszyk.php?action=update_item&prodid='+itemId+'&ilosc='+newQty;
	}
	
function UpdateQtyRewrite(item)
	{
	itemId = item.name;
	newQty = item.options[item.selectedIndex].text;
				
	document.location.href = '/koszyk/zmien/'+itemId+'/'+newQty;
	}	

 


