function toggleHeading ( element, subelement )
{
	if (element.className == "clickableHeading") {
		// open heading
		element.className = "clickableHeadingActive";
		document.getElementById(subelement).style.display = "block";
	} else {
		// close heading
		element.className = "clickableHeading";
		document.getElementById(subelement).style.display = "none";
	}
}

function openNewWindow(imgurl, width, height, alt)
{
	var wnd = window.open('', '_blank', 'location=no, directories=no, fullscreen=no, menubar=no, status=no, toolbar=no, width=' + width + ', height=' + height + ', scrollbars=no');
	
	wnd.document.writeln('<html>');
	wnd.document.writeln('<head>');
	wnd.document.writeln('<title>' + alt + '</title>');
	wnd.document.writeln('</head>');
	wnd.document.writeln('<body>');
	wnd.document.writeln('<img src="' + imgurl + '" width="' + width + '" height="' + height + '" alt="Click to close" onclick="javascript:window.close();" onmouseover="this.style.cursor=\'pointer\'"/>');
	wnd.document.writeln('</body>');
	wnd.document.writeln('</html>');
	wnd.document.close();
}