function goHome(){  //page script
	if(document.location.href.substring(0,7)=="http://"){
		if(document.location.href == parent.document.location.href){
			document.location = "index.html#"+document.location.href;	
		}
	}
}

function menuHome(){ //menu only script
	if(document.location.href.substring(0,7)=="http://"){
		if(document.location.href == parent.document.location.href){
			document.location = "index.html";
		}
	}
}

function loader(){  //framesetscript
	if(document.location.href.substring(0,7)=="http://"){
		if(document.location.hash.substring(1).length>1){
			frames.main.document.location = document.location.hash.substring(1);
		} else if(frames.main.document.location.href.indexOf("hovedside.html")==-1){
			frames.main.document.location = "hovedside.html";
		}
	}
}