document.write("<style type=\"text/css\">.closed {display: none;}</style>");

function toggleFolder(id)
{
	if (document.getElementById(id).className == "open")
		document.getElementById(id).className = "closed";
	else
		document.getElementById(id).className = "open";
}

function imageShot(src, width, height)
{
	window.open(src, "OpenImage", "width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no'");
}
