intFeaturesFlag = new Array(0,0,0,0,0);
intPricesFlag = new Array(0,0,0,0,0);

function showFeatures(strDiv)
{
	var objFeatures = document.getElementById(strDiv);

	var intIndex = strDiv.charAt(8);

	if(intFeaturesFlag[intIndex] == 0)
	{
		objFeatures.style.display = 'block';
		objFeatures.style.borderTop = 'solid 1px #832d90';
		objFeatures.style.borderBottom = 'solid 1px #832d90';
		intFeaturesFlag[intIndex] = 1;
	}
	else
	{
		objFeatures.style.display = 'none';
		objFeatures.style.borderTop = 'none';
		objFeatures.style.borderBottom = 'none';
		intFeaturesFlag[intIndex] = 0;
	}
}

function showPrices(strDiv)
{
	var objPrices = document.getElementById(strDiv);
	var intIndex = strDiv.charAt(6);

	if(intPricesFlag[intIndex] == 0)
	{
		objPrices.style.display = 'block';
		objPrices.style.borderTop = 'solid 1px #832d90';
		objPrices.style.borderBottom = 'solid 1px #832d90';
		intPricesFlag[intIndex] = 1;
	}
	else
	{
		objPrices.style.display = 'none';
		objPrices.style.borderTop = 'none';
		objPrices.style.borderBottom = 'none';
		intPricesFlag[intIndex] = 0;
	}
}
