var selecteddiv="div_seven";
var selecteddiv1 ="seven";
var idstore = "1"

function highlight(id) 
{
	var divs = "div_" + id;
//	var divs = "item" + id;
	if (whichversion() == 'IE4')
	{
	window.document.all(divs).style.visibility='visible';
	window.document.all(selecteddiv).style.visibility='hidden';
	window.document.all(selecteddiv1).bgColor = 'black';
	
	if (divs == selecteddiv)
	{	
	window.document.all(divs).style.visibility='visible';
	}
	
	selecteddiv=divs;
	selecteddiv1=id;	
	
	if (id == 'one')
		{eval(id + ".bgColor = '716a75'");
			window.document.all.line.bgColor = '716a75';
			}
	else if (id == 'two')
		{eval(id + ".bgColor = '7077a2'");
			window.document.all.line.bgColor = '7077a2';
			}
	else if (id == 'three')
		{eval(id + ".bgColor = '0066FF'");
			window.document.all.line.bgColor = '0066FF';
			}
	else if (id == 'four')
		{eval(id + ".bgColor = 'E75252'");
			window.document.all.line.bgColor = 'E75252';
			}
	else if (id == 'five')
		{eval(id + ".bgColor = '81a765'");
			window.document.all.line.bgColor = '81a765';
			}
	else if (id == 'six')
		{eval(id + ".bgColor = 'f38b02'");
			window.document.all.line.bgColor = 'f38b02';
			}
	}
	else if (whichversion() == 'NS4')
	{
	
	}
}

function unhighlight(id) {

	if (whichversion() == 'IE4')
	{
	eval(id + ".bgColor = 'black'");
	}
	if (whichversion() == 'NS4')
	{
	}	
}

function hidediv() 
{
	if (whichversion() == 'IE4')
	{
		window.document.all(selecteddiv).style.visibility='hidden';
    	window.document.all(selecteddiv1).bgColor = 'black';
   		window.document.all.line.bgColor = 'white';
	}
	else if (whichversion() == 'NS4')
	{
	}
}

function show() 
{
	if (whichversion() == 'IE4')
	{
		window.document.all(selecteddiv).style.visibility='hidden';
    	window.document.all(selecteddiv1).bgColor = 'black';
   		window.document.all.line.bgColor = 'white';
	}
	else if (whichversion() == 'NS4')
	{
	}
}


