/*******************************************
* Developed by www.webtranscend.com
* (C) webtranscend.com
* This copyright notice not to be removed.
*******************************************/
var oLastDiv = 0;
var oProdDiv = 0;
var sText = new Array();

function ShowDiv(sItem)
{
	var oItem = GetObject(sItem);

	oItem.style.visibility = "visible";

	if (oLastDiv != oItem && oLastDiv != 0)
		oLastDiv.style.visibility = "hidden";

	oLastDiv = oItem;
	ShowProd(sItem);
}

function HideDiv(sItem)
{
	var oItem = GetObject(sItem);

	oItem.style.visibility = "hidden";

	oLastDiv = 0;

	HideProd();
}


function ShowProd(sItem)
{
	var l = sItem.length - 1;
	var i = sItem.substr(l,1) - 1;

	if (ie)
		oProdDiv.innerText = sText[i];
	else
		oProdDiv.textContent = sText[i];

}

function HideProd()
{
	if (ie)
		oProdDiv.innerText = "";
	else
		oProdDiv.textContent = "";
}

function SetupProds()
{
	oProdDiv = GetObject("ProdName");

	var iMax = arguments.length;
	var i=0;

	for(i=0;i<=iMax;i++)
	{
		sText[i] = arguments[i] + " ";
	}
}


