<!--
function navOver(text, e){
	e.style.border = "1px #316AC5 solid";
	e.style.background = "#C1D2EE";
	window.status = text;
}
//-->
<!--
function navOut(e){
	e.style.border = "1px #ECE9D8 solid";
	e.style.background = "#ECE9D8";
	window.status = '';
}
//-->
<!--
function bold(theForm) {
   txt=prompt("Skriv den text du vill göra fet.","");      
   if (txt!=null) {
    AddTxt="[b]"+txt+"[/b]";
    AddText(AddTxt, theForm);
   } 
}
//->
function italic(theForm) {
   txt=prompt("Skriv den text du vill göra kursiv.","");      
   if (txt!=null) {
    AddTxt="[i]"+txt+"[/i]";
    AddText(AddTxt, theForm);
   } 
}
//->
<!--
function under(theForm) {
   txt=prompt("Skriv den text du vill göra understruken.","");      
   if (txt!=null) {
    AddTxt="[u]"+txt+"[/u]";
    AddText(AddTxt, theForm);
   } 
 }
//->
<!--
function through(theForm) {
   txt=prompt("Skriv den text du vill göra överstruken.","");      
   if (txt!=null) {
    AddTxt="[s]"+txt+"[/s]";
    AddText(AddTxt, theForm);
   } 
 }
//->
<!--
function addLink(theForm) {
		txt = prompt("Ange en URL.", "http://");
		if(txt!=null){
			auth=prompt("Ange en länktext.\nLämna blankt om du inte vill ange en titel.","");
				if(auth!=""){
					AddTxt="[url="+ txt +"]"+ auth + "[/url]";
				}else{
					AddTxt="[url]" + txt + "[/url]";
				}
		}
		AddText(AddTxt, theForm);
}
//-->
<!--
function mLink(theForm) {
		txt = prompt("Ange en mailadress.", "");
		if(txt!=null){
			auth=prompt("Ange namnet på den adressen tillhör.\nLämna blankt om du inte vill ange ett namn.","");
				if(auth!=""){
					AddTxt="[email="+ txt +"]"+ auth + "[/email]";
				}else{
					AddTxt="[email]" + txt + "[/email]";
				}
		}
		AddText(AddTxt, theForm);
}
//-->
<!--
function tSize(theForm, size) {
		sText=prompt("Skriv den text du vill ha i annan storlek.","");
		if (sText!="") {
			AddTxt="[" + size + "]"+ sText +"[/" + size + "]";
			AddText(AddTxt, theForm);
		}
}
//-->
<!--
function AddText(NewCode, theForm) {
  theForm.value+=NewCode
}
//-->
<!--
function oWin(URL,width,height){
	if (parseInt(navigator.appVersion) >= 3){
		if (navigator.appName == "Netscape" && parseInt(navigator.appVersion)<5){
			var tools = new Packages.java.awt.Toolkit.getDefaultToolkit();
			screen=tools.getScreenSize();
		}
		x = screen.width;
		y = screen.height;
	}
	window.open(URL,"fExplorer","scrollbars=no,top=" + parseInt(y/2-height/2-16) + ",left=" + parseInt(x/2-width/2-5) + ",width=" + width + ",height=" + height);
}
//-->
<!--
function saveText(){
	var f = document.eFile;
	if(f.tPost.value == ""){
		alert("Du måste skriva en text.\n");
		return false;
	}else{
		f.submit();
		window.close(self);
		window.opener.location.reload();
	}
}
//-->
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->
<!--
function delFile(file){
	if(confirm("Vill du ta bort filen?\n")){
		window.location.href="fTree.asp?do=deleteFile&fileName=" + file;
		return true;
	}
}
//-->
