/*

	Show/hide menu by Szymon Kosok
	
	NooToplist v. 1.01.
	
	Date: 12 Jul 2004
	
	E-Mail: szymon.kosok@music-game.net
	
*/

	var oldhtml = new Array();
	
	var showed = new Array();
	
	function menushow(id, shtml){
			
			if(showed[id] != true){
				
				oldhtml[id] = document.getElementById(id).innerHTML;
				
				document.getElementById(id).innerHTML = document.getElementById(id).innerHTML + shtml;
				
				showed[id] = true;
				
			} else {
				
				showed[id] = false;
				
				menuhide(id);
				
			}
			
	}
	
	function menuhide(id){
		
			document.getElementById(id).innerHTML = oldhtml[id];
			
	}
	
	function ask(){
    
		msg = "Weet u het zeker?";

	    return confirm(msg);
    
	}
