function goHome() {
 window.location = "http://" + window.location.host;
}
function goOut(where) {
 window.open(where);
}
function cycleTopBanner() {
 x = document.getElementById("hiddenText").innerHTML;
 x = parseInt(x);
 x = x + 1;
  switch(x.toString()){
   case "1":
    document.getElementById("topbannerCell").style.backgroundImage = "url(pix/banners/banner_red_700x100.jpg)"
   break;
   case "2":
    document.getElementById("topbannerCell").style.backgroundImage = "url(pix/banners/banner_yellow_700x100.jpg)"
   break;
   case "3":
    document.getElementById("topbannerCell").style.backgroundImage = "url(pix/banners/banner_green_700x100.jpg)"
   break;
   case "4":
    document.getElementById("topbannerCell").style.backgroundImage = "url(pix/banners/banner_purple_700x100.jpg)"
    x = "0"
   break;
   default:
   break;
  }
 document.getElementById("hiddenText").innerHTML = x;
return;
}

function noLink() {
 alert("Dette site er under udvikling.\nMange links virker ikke!\n*sorry* :-P");
}

function toggleDiv(x,y) {
 v = document.getElementById(x).style.display;
 switch(v){
  case "none":
   document.getElementById(x).style.display = "block"
   document.getElementById(y).innerHTML = "(skjul)"
  break;
  case "block":
   document.getElementById(x).style.display = "none"
   document.getElementById(y).innerHTML = "(uddyb)"
  break;
 }
}

function skrivmail(a,b) {
 document.write("<a href=\"javascript:sikkermail('"+a+"','"+b+"');\">"+a+"<span style=\"display:none;\">SLET_DETTE</span>&#64;<span style=\"display:none;\">SLET_DETTE</span>"+b+"</a>");
}

function sikkermail(a,b) {
 window.location = unescape("%6D%61%69%6C%74%6F%"+(6/2).toString()+"A") + a + unescape("%"+(80/2).toString()) + b;
}

