function toggleDetails(e)
{
    var allDIVTags = e.parentNode.getElementsByTagName("div");
	
    for (i=0; i < allDIVTags.length; i++)
	{
		//Get all tags with the specified class name.
		if (allDIVTags[i].className == "details")
		{
			if (allDIVTags[i].style.display != "block")
			{
				allDIVTags[i].style.display = "block";
			}
			else {
				allDIVTags[i].style.display = "none";
			}
		}
    }
}