<!-- //

	function countTotal(ID)
	{
		weight = Math.round(document.getElementById('weight_'+ID).value*1000);
		count = (document.getElementById('count_'+ID).value);
		totalWeight = (weight * count);
		document.getElementById('totalWeight_'+ID).innerHTML = totalWeight / 1000;
		price = Math.round(document.getElementById('price_'+ID).value*100);
		document.getElementById('totalPrice_'+ID).innerHTML = Math.round((count  * price)) / 100;
	}
	
	function order(ID)
	{
		if(parseInt(document.getElementById('count_'+ID).value) > 0)
		{
			return true;
		}
		else
		{
			alert('Пожалуйста, укажите количество товара, которое хотите заказать.');
			return false;
		}
		
	}
	
	var popUpWin=0;
	function popUpWindow(URLStr, left, top, width, height)
	{
	  if(popUpWin)
	  {
		if(!popUpWin.closed) popUpWin.close();
	  }
	  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
	}

// -->