function showLayer(layerName)
{
	document[layerName + 'Pic'].src = eval(layerName + 'on.src');
	eval(layerRef + layerName + endLayerRef + styleRef + ".visibility = 'visible'");
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".color = '#3366cc'");
	// eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".fontWeight = 'bold'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderBottom = '1px solid #ff0000'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderTop = '1px solid #ff0000'");


}
function hideLayer(layerName)
{
	document[layerName + 'Pic'].src = eval(layerName + 'off.src');
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".color = '#000000'");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderBottom = ''");
	eval(layerRef + layerName + 'Cell' + endLayerRef + styleRef + ".borderTop = ''");
	eval(layerRef + layerName + 'Link' + endLayerRef + styleRef + ".fontWeight = ''");	
	
}
function hideAll(){
	hideLayer('Nav01');
	hideLayer('Nav02');
	hideLayer('Nav03');
	hideLayer('Nav04');
	hideLayer('Nav05');
	hideLayer('Nav06');
}
function ShowMe(layerName){
	hideAll();
	showLayer(layerName);
}

Nav01on= new Image(85,83);
Nav01on.src="/images/Potentiostats_ON.JPG";
Nav01off= new Image(85,83);
Nav01off.src="/images/Potentiostats_Off.JPG";

Nav02on= new Image(85,83);
Nav02on.src="/images/MultiChannel_ON.JPG";
Nav02off= new Image(85,83);
Nav02off.src="/images/MultiChannel_OFF.JPG";

Nav03on= new Image(85,83);
Nav03on.src="/images/Polarographic_ON.JPG";
Nav03off= new Image(85,83);
Nav03off.src="/images/Polarographic_OFF.JPG";		

Nav04on= new Image(85,83);
Nav04on.src="/images/ElectroSoftware_ON.JPG";
Nav04off= new Image(85,83);
Nav04off.src="/images/ElectroSoftware_OFF.JPG";		

Nav05on= new Image(85,83);
Nav05on.src="/images/SurfaceScanning_ON.JPG";
Nav05off= new Image(85,83);
Nav05off.src="/images/SurfaceScanning_OFF.JPG";		
		
Nav06on= new Image(85,83);
Nav06on.src="/images/ElectroAccessories_ON.JPG";
Nav06off= new Image(85,83);
Nav06off.src="/images/ElectroAccessories_OFF.JPG";		

