function lag(lagnavn) // IE4+
{
    if (document.all[lagnavn].style.display == 'none') {
        document.all[lagnavn].style.display = 'block';
    }
    else {
        document.all[lagnavn].style.display = 'none';
    }
}

function lag2(lagnavn,type) // IE4+
{
    if (type == "on") {
        document.all[lagnavn].style.display = 'block';
    }
    else {
        document.all[lagnavn].style.display = 'none';
    }
}


function popup(url,name,wwidth,wheight,wscrollbars) {
window.open(url,name,'width='+wwidth+',height='+wheight+',scrollbars='+wscrollbars+',toolbar=0,status=no,resizable=1');
}


var myHostname  = "maxidate.nl";        // website locatie zonder http://www. 
var myReplace   = "www.maxidate.nl";    // website locatie zonder http:// met www. 
var h           = location.href; 

if( location.hostname == myHostname ) { 
    h   = h.replace( myHostname, myReplace ); 
} 

if( h != location.href ) { 
   
} 

