<!-- Hide this file from non-JavaScript-supporting browsers!

/* Check if there is no frame IF no frame-> send the user to a frame! */ 

var platsens_namn = "http://www.latronix.se/index.html"
var strang = window.location.pathname

//if the names are the same, there is no frame!
if (window.parent.location == window.location) {

	//Find the catalouge "sidor" 
	check_strang = strang.indexOf("sidor")   //returns the position IF the index is found, else -1
	if (check_strang > -1) { //IN CASE ERRORS; check if there exist "sidor"

		// IF "start_sve" --> send to index!
		testa_namn = strang.indexOf("meta_keywords_sve")
		if (testa_namn > -1) {
			platsens_namn = "http://www.latronix.se/index.html"
		}

		else { // if (testa_namn > -1)
			platsens_namn = "http://www.latronix.se/ramar/ram_start_eng.htm"
		}

	} //if (check_strang > -1)

	else { // if (check_strang > -1)
	//alert("Error! Felaktigt filnamn! Ramar saknas dock!")
	}

	//SEND to right position:
	//alert("Gå in i ChangeToFram.js och se till att vi flyttar till " + platsens_namn)
	parent.location.href = platsens_namn

} // if (window.parent.location == window.location)

else { // if (window.parent.location == window.location)
//alert("Det finns ramar: "+ window.parent.location + ", " + window.location)
}

// stop the hiding -->