// JavaScript Document


// Popup functions
	function newWindow(url, name, w, h) {
		window.open(url,name,'scrollbars,resizable,height='+h+',width='+w);
	}
	
	
	function newWindowAll(url, name) {
		window.open(url,name,'location,titlebar,toolbar,menubar,status,scrollbars,resizable');
	}
	
// Expand/Shrink paragraphs
	function showHide(textid,labelid) {
	
		if (document.getElementById(textid).className == "show") {
	
			document.getElementById(textid).className = "hide";
			document.getElementById(labelid).className = "plus";
			
		} else {
			
			document.getElementById(textid).className = "show";
			document.getElementById(labelid).className = "minus";
		}
	
	}
