// JavaScript Document
<!--
function newWindow(imageSrc){
	myWindow = window.open(imageSrc, "myWim", "width=800, height=600")
	}

function newSpin(imageSrc){
	mySpinWindow = window.open(imageSrc, "mySpin", "width=320, height=260")
	}
	
function toggle(id){
    ul = "ul_" + id;
    ulElement = document.getElementById(ul);
    if (ulElement){
            if (ulElement.className == 'closed'){
                    ulElement.className = "open";
                    }else{
                    ulElement.className = "closed";
                    }
            }
    }
-->
