// JScript source code



// Sätter rätt rubrik för hemsidan (top) - anropas ifrån huvudsida bodyonload

function SetHeaderText(lngPageId, strHeaderText, lngSize){

	

	var strMenuId = "mnu" + lngPageId;



	// Sätter MailSubject

	MailSubject.href = "mailto:bengt@skorsten.nu?subject=Mail från sidan: " + strHeaderText;	



	// Storlek

	if(lngSize == 2)

		strHeaderText = "<font size='4'>" + strHeaderText + "</font>";

		

	TopMenuHeaderText.innerHTML = strHeaderText;

	TopMenuHeaderTextShadow.innerHTML = strHeaderText;

	if(lngPageId != 0)

		document.all[strMenuId].innerHTML = "<img src='images/MenuArrow.gif'>";

		

}



function OpenDictonary(strLink){

	window.open("incfiles/ordlista.txt#"+ strLink, "NewWindow", "toolbar=no, status=no, width=400, height=250, scrollbars=yes");

}





// Hämtar URL ifrån länken i en tabellcell

function RetriveURL(URLObject){

	window.location.href = URLObject.children.item(0).href;

	// window.alert(URLObject.children.item(0).href);

}


