// JavaScript Document

var sida, start, end;
if (window.parent.frames.length == 0){
	start = window.location.href.lastIndexOf("/") + 1;
	end = window.location.href.length;
	sida = window.location.href.slice(start, end);
	if (sida == "hyra_meny.htm" | sida == "hyrpriser.htm"){
		sida = "hyra_frame.htm";
	}
	window.location = "index.htm?sida=" + sida;
}