var boolNS4 = navigator.appVersion.indexOf("Nav") > 0 && parseInt(navigator.appVersion) == 4;
function GetElement(strElement)
{
	if (document.getElementById)
	{
		// IE5+, Netscape 6, Mozilla
		return (document.getElementById(strElement));
	}
	else if (document.all)
	{
		// IE4
		return (eval("document.all." + strElement));
	}
	else if (document.layers)
	{
		// Netscape 4
		return (eval("document." + strElement));
	}
	else
	{
		// Crap!
		return (null);
	}
}

function showDesc(varMomsID) {
   if(boolNS4) return false;
   objCurrentLong = GetElement("Desc"+varMomsID+"Long");
   objCurrentLong.style.display = (objCurrentLong.style.display=="none" ? "block" : "none");
}

//<!--
	var newwindow;
	function OpenWindow(url) {
	    newwindow=window.open(url,'POP','height=600,width=600,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no');
		if (window.focus) {newwindow.focus()}
}
//-->
//Insert fil på form
//function insertFil(sti,formnavn) { 
//	document.forms[formnavn].txtFil.value = sti;
//}
//Insert billede på form
//function insertBillede(strsti,strformnavn) { 
//	document.forms[strformnavn].txtBillede.value = strsti;
//}