<!--
	// Gallery popup function
	function popup_pic(sPicURL) { 
		var x = window.open( "popup.php?"+sPicURL, "LoudMerch", "resizable=1,scrollbars=1,status=0,left=0,top=0,height=200,width=200");
		x.focus();
	}

	// Menu script
	startList = function(){
		if(document.all&&document.getElementById){
			navRoot = document.getElementById("dmenu");
			for(i=0; i<navRoot.childNodes.length; i++){
				node = navRoot.childNodes[i];
				if(node.nodeName=="LI"){
					node.onmouseover=function(){
						this.className+=" over";
					}
					node.onmouseout=function(){
						this.className=this.className.replace(" over", "");
					}
				}
			}
		}
	}
	window.onload=startList;

	function TOC(){
		popup = window.open('toc.php','TableOfContents','width=740,height=400,scrollbars=yes,toolbar=yes,status=yes,location,resizable=1,menubar,left=0,top=0');
		if(!popup.opener){
			popup.opener = self;
		}
	}

	function open_links(siteurl){
		LinkWindow = window.open("http://"+siteurl,"","width=760,height=420,scrollbars=yes,toolbar=yes,status=yes,location,resizable=1,menubar,left=0,top=0");
	}

	function open_inside_links(siteurl){
		LinkWindow = window.open(siteurl,"","width=760,height=420,scrollbars=yes,toolbar=yes,status=yes,location,resizable=1,menubar,left=0,top=0");
	}

//-->
