// funktion til at sætte sidehøjde ved load 
function side_load(browser,forside) { 
 /*
 h = document.body.clientHeight;
 if(h<350) h = 350;
 if(forside == 'trueS') {
  h = 710;
	document.getElementById('indhold').style.height = (h-296) + 'px';
 } else { 
  if(browser == 'ff'){
   document.getElementById('indhold').style.height = (h-312) + 'px';
  } else {
   document.getElementById('indhold').style.height = (h-296) + 'px';
  }
 }
 document.getElementById('side').style.height = (h-50) + 'px';
 document.getElementById('menu').style.height = (h-296) + 'px';
 document.getElementById('adresselinie').style.top = (h-45) + 'px';
 */
}

// funktion til at reloade side ved resize
function side_resize(browser,forside) {
 window.location = window.location;  
}

// funktion til at åbne popups
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}