// open window
function openWin(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// menu show/hide etc.
function swapButton(name){
	
	buttonStyle = document.getElementById(name).className;
		
	if(buttonStyle == 'over'){
		document.getElementById(name).className = 'down';	
	}else{
		document.getElementById(name).className = 'over';
	}
	
}
