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){
	if (!document.getElementById)
		return;
	
	elem = document.getElementById(which);
	
	if (elem.style.display=="none")
		elem.style.display="";
	else
		elem.style.display="none";
}

