function flipSection(id) {
    if (document.getElementById('block_' + id).style.display == 'none') {
        document.getElementById('block_' + id).style.display = 'block'
        document.getElementById('className_' + id).className = 'SectionOpen'
    }
    else {
        document.getElementById('block_' + id).style.display = 'none'
        document.getElementById('className_' + id).className = 'SectionClosed'
    }
}

function lofo1(){
try
  {
var a = '';
var b = '';
a = document.getElementById("LF").value;
b = document.getElementById("RK").value;
if(a == undefined)
{
a = "RF - SKADESERVICE: Tlf. 40 30 75 72 eller 40 31 75 72<br /><br /><a href='http://www.rf-s.dk'>www.rf-s.dk<a/>";
}
if(b == undefined)
{
b = "MIDTFYENS TOTALSERVICE: Tlf: 62 63 17 <br /><br /><a href='http://www.fynstotalservice.dk'>www.fynstotalservice.dk</a>";

}

lofo(a,b);
 }
catch(err)
  {
  }
}

function lofo(a,b)
{
var str = new RegExp(location.href);
var path = /rk/i;
if(path.test(str)==true){
document.getElementById("her").innerHTML = b;
}
else {
document.getElementById("her").innerHTML = a;
}
}
