document.onkeypress = function (evt) {
	var the_browser = navigator.appName; //Vilken webbläsare?
	if (document.all && the_browser.indexOf("Microsoft")!=-1) {
		if (event.shiftKey && event.ctrlKey && event.keyCode == "1") {
			if (confirm("Vill du administrera den här sidan?")) {       
				window.location.href = "http://snyggare-internet.se/admin/?item=" + js_menu_item;
			}                                                                                  
		}                                                                                    
	}                                                                                      
	else {                                                                                 
		if(evt.shiftKey && evt.ctrlKey && evt.charCode == "65") {                            
			if (confirm("Vill du administrera den här sidan?")) {                              
				window.location.href = "http://snyggare-internet.se/admin/?item=" + js_menu_item;
			}                                                                                  
		}                                                                                    
	}                                                                                      
	return true;                                                                           
}

function hideshow(which,id){
	if(!document.getElementById){
		return;
  }                    
	elem       = document.getElementById(which);	 
	the_id     = "hide_me_"+id;
  hide_this  = document.getElementById(the_id);    
	
  if(elem.style.display=="none"){       
		elem.style.display="";
    hide_this.style.display="none";		
  }              
	else{                                  
		elem.style.display="none";
		hide_this.style.display="block";
  }          
}                                                                                        
