<!--
function opensubmenu(obj) {
	submenu_information.style.display='none';
	submenu_webutveckling.style.display='none';
	submenu_filarkiv.style.display='none';
	submenu_lankar.style.display='none';
	if (obj != '') {
		document.all.item(obj).style.display='';
	}
}

function openWin(URL, myHeight, myWidth, myScroll, myResizable) {
	if(! myHeight) { myHeight=300 }
	if(! myWidth) { myWidth=300 }
	if(! myScroll ) { myScroll="yes" }
	if(! myResizable ) { myResizable="yes" }
	myParams="toolbar=no,width=" + myWidth + ",height=" + myHeight + ",status=no,scrollbars=" + myScroll + ",resizable=" + myResizable + ",menubar=no";
	window.open(URL,"_blank",myParams);
}

function partopen(obj) {
	if (document.all.item(obj).style.display=="none")
		document.all.item(obj).style.display='';
	else
		document.all.item(obj).style.display='none';
}

function CheckAll() {
	for (var i=0;i<document.frm.elements.length;i++) {
		var element = document.frm.elements[i];
		if ((element.name != 'checkall') && (element.type=='checkbox')) {
			element.checked = document.frm.checkall.checked;
		}
	}
}

// Insert picture
function insertTag(txt) {
	document.all.message.value += txt;
	document.all.message.focus();
}
-->