var listIndicesTab = new Array();
var haveProduct = new Array();
function showBlockTab(menu) {
	hideBlockTab();
 	eval('document.getElementById(' + '"tab' + menu + '"' + ').style' + '.display = "block"');
	eval('document.getElementById(' + '"imgleft' + menu + '"' + ').src = "' + BasePath + '/medias/pictures/tab/lefttabon.gif"');
	eval('document.getElementById(' + '"imgright' + menu + '"' + ').src = "' + BasePath + '/medias/pictures/tab/righttabon.gif"');
	eval('document.getElementById(' + '"tabcenter' + menu + '"' + ').className = "tabon"');
	eval('document.getElementById(' + '"tabtd' + menu + '"' + ').bgColor = "#da0028"');
}

function hideBlockTab() {
	for (var i = 0 ; i < listIndicesTab.length ; i++) {
		eval('document.getElementById(' + '"tab' + listIndicesTab[i] + '"' + ').style' + '.display = "none"');
 		if (haveProduct[i]) {
			if (document.getElementById('imgleft' + listIndicesTab[i]).src.indexOf(BasePath + '/medias/pictures/tab/lefttabon.gif') > -1)
				eval('document.getElementById(' + '"imgleft' + listIndicesTab[i] + '"' + ').src = "' + BasePath + '/medias/pictures/tab/lefttaboff.gif"');
			if (document.getElementById('imgright' + listIndicesTab[i]).src.indexOf(BasePath + '/medias/pictures/tab/righttabon.gif') > -1)
				eval('document.getElementById(' + '"imgright' + listIndicesTab[i] + '"' + ').src = "' + BasePath + '/medias/pictures/tab/righttaboff.gif"');
			if (document.getElementById('tabcenter' + listIndicesTab[i]).className.indexOf('tabon') > -1)
				eval('document.getElementById(' + '"tabcenter' + listIndicesTab[i] + '"' + ').className = "taboff"');
			if (document.getElementById('tabtd' + listIndicesTab[i]).bgColor.indexOf('da0028') > -1)
				eval('document.getElementById(' + '"tabtd' + listIndicesTab[i] + '"' + ').bgColor = "#f492a3"');
		} else {
			if (document.getElementById('imgleft' + listIndicesTab[i]).src.indexOf(BasePath + '/medias/pictures/tab/lefttabon.gif') > -1)
				eval('document.getElementById(' + '"imgleft' + listIndicesTab[i] + '"' + ').src = "' + BasePath + '/medias/pictures/tab/lefttabdesactivate.gif"');
			if (document.getElementById('imgright' + listIndicesTab[i]).src.indexOf(BasePath + '/medias/pictures/tab/righttabon.gif') > -1)
				eval('document.getElementById(' + '"imgright' + listIndicesTab[i] + '"' + ').src = "' + BasePath + '/medias/pictures/tab/righttabdesactivate.gif"');
			if (document.getElementById('tabcenter' + listIndicesTab[i]).className.indexOf('tabon') > -1)
				eval('document.getElementById(' + '"tabcenter' + listIndicesTab[i] + '"' + ').className = "tabdesactivate"');
			if (document.getElementById('tabtd' + listIndicesTab[i]).bgColor.indexOf('da0028') > -1)
				eval('document.getElementById(' + '"tabtd' + listIndicesTab[i] + '"' + ').bgColor = "#b2a4a7"');
		}
	}
}
