// Browsertest

var MOZ2 = (navigator.userAgent.indexOf("Mozilla/2") != -1);
var MOZ3 = (navigator.userAgent.indexOf("Mozilla/3") != -1);
var MOZ4 = (navigator.userAgent.indexOf("Mozilla/4") != -1);
var MOZ5 = (navigator.userAgent.indexOf("Mozilla/5") != -1);

var OP   = (navigator.userAgent.indexOf("Opera") != -1);
var OP3  = (navigator.userAgent.indexOf("Opera/3") != -1) && MOZ3;
var OP35 = (navigator.userAgent.indexOf("Opera/3") != -1) && MOZ4;
var OP36 = (navigator.userAgent.indexOf("Opera 3") != -1) && MOZ4;

var NN   = (navigator.appName == "Netscape") && !OP;
var NN2  = NN && MOZ2;
var NN3  = NN && MOZ3;
var NN4  = NN && MOZ4;
var NN5  = NN && MOZ5;

var IE   = navigator.userAgent.indexOf("MSIE") != -1;
var IE3  = navigator.userAgent.indexOf("MSIE 3") != -1;
var IE4  = navigator.userAgent.indexOf("MSIE 4") != -1;
var IE5  = navigator.userAgent.indexOf("MSIE 5") != -1;

var NN3plus = NN && (parseInt(navigator.appVersion) >= 3);
var NN4plus = NN && (parseInt(navigator.appVersion) >= 4);
var IE4plus = IE && (parseInt(navigator.appVersion) >= 4);

var WIN  = navigator.userAgent.indexOf("Win") != -1;
var MAC  = navigator.userAgent.indexOf("Mac") != -1;

var NN4w = NN4 && WIN;
var NN5w = NN5 && WIN;
var IE3w = IE3 && WIN;
var IE4w = IE4 && WIN;
var IE5w = IE5 && WIN;

var NN4m = NN4 && MAC;
var NN5m = NN5 && MAC;
var IE3m = IE3 && MAC;
var IE4m = IE4 && MAC;
var IE5m = IE5 && MAC;


// Bericht in statusbalk

var CopyMelding = "Copyright © 1998-2004 EDEV. Alle rechten voorbehouden.";


function StatusbalkTekstExtern(txt) {
window.status = txt;
setTimeout("StatusbalkLeeg()",3000);
}

function StatusbalkLeeg() {
window.status="";
}

function BeweegMuisOp(txt) {
if (!NN2 && !IE3) {
      window.status = txt;
      }
      else {
      window.status = txt;
      setTimeout("BeweegMuisAf()",3000);
      }
      }
      function BeweegMuisAf() {
      window.status="Copyright © 1998-2004 EDEV. Alle rechten voorbehouden.";
      }





