
<!-- 

// Checks if page is opened as a standalone
// If so, a header is written on top of the page

function checkParent(belongTo)

{	var currentFrame=parent.location.href;
	var rightFrame=new Array();

	rightFrame[0] = new Object
	rightFrame[0].URL = "index.html"
	rightFrame[0].TXT = "Tromsø klatreklubb"

// Opened as standalone
	if (top==self)
	{	Outline="<table cellpadding=\"5\" cellspacing=\"0\" width=\"95%\" bgcolor=\"#CCCCCC\">"
		Outline+="<tr><td>"
		Outline+="<b>Denne siden er åpnet alene uten nettstedets omgivende kos</b><br>"
		Outline+="Riktig nettsted:&nbsp;"
		Outline+="<A HREF=http://home.no/tkk target=\"_parent\">" + rightFrame[0].TXT + "</A><br>"
	 + "</a>"
		Outline+="</td></tr></table><br>"
		document.write(Outline)
	}
	
}

// end -->


