// JavaScript Document

// 變換標籤與檔案夾的function
function turnOn(newFolder, newIcon)
{
	// Adjust the background colors for the tabs
		var thisFolder = document.getElementById(newFolder);
		var thisIcon = document.images[newIcon];
	
	if ( thisFolder.style.display =="none" )
	{
		thisFolder.style.display ="block";
	}
	else
	{
		thisFolder.style.display ="none";
	}
}