/*
	Javascript on the productListingViewList page

	clearQuantityInputFields(): clear all quantity input fields except the field which was clicked by a shop customer

	author: ppu
	date:		22.09.09
*/

	function clearQuantityInputFields(clickedElem)
	{
		var f = document.forms["productListing"];		
		var list = f.getElementsByTagName("input");
		for (var i = 0; i < list.length; i++) 
		{
			if ( (list[i].name.indexOf("productListing:productListingTable_1x9:") != -1) && (list[i].name != clickedElem.name) ) 
			{
			   list[i].value='';
			}
		}
	}
