function setProductsOnTop()
{
	if(document.getElementById('showroom') && cid && isSortDone!==true)
	{
		var showroom = document.getElementById('showroom');
		var p1 = document.getElementById('product_'+cid+'1');
		var p2 = document.getElementById('product_'+cid+'2');
		
		showroom.appendChild(p1);
		showroom.appendChild(p2);

		var isSortDone = true;
	}
}
function setProducts()
{
	if(document.getElementById('showroom') && list.length > 0)
	{
		var showroom = document.getElementById('showroom');
		if(showroom.childNodes.length >= 2)	return;
		for(var i = 0; i < list.length; i ++)
		{
			if (i == 4)
			{
				return;
			}
			var topprod = document.getElementById('product_'+list[i]);
			
			if(topprod != null)
			{
				showroom.appendChild(topprod);
			}
		}
	}
}
function setProduct()
{
	if(document.getElementById('showroom') && list.length > 0)
	{
		var showroom = document.getElementById('showroom');
		if(showroom.childNodes.length >= 2)	return;
		for(var i = 0; i < list.length; i ++)
		{
			if (i == 6)
			{
				return;
			}
			var topprod = document.getElementById('product_'+list[i]);

			if(topprod != null)
			{
				showroom.appendChild(topprod);
			}
		}
	}
}

