var dienst = null;

function fastl(){
  dienst = document.getElementById("fastlogin").dienst.options[document.getElementById("fastlogin").dienst.selectedIndex].value;
  if(dienst == "no") { alert("Kies eerst voor welke dienst je wilt inloggen"); }
  else{
  document.getElementById("fastlogin").action = "/index.php?p=login&d="+dienst;
  document.getElementById("fastlogin").submit();
  }
}

function contrDienst()
{
  dienst = document.getElementById("fastlogin").dienst.options[document.getElementById("fastlogin").dienst.selectedIndex].value;
  
  if(dienst == "no")
  {
    document.getElementById("wachtwoordVergeten").style.display = "none";
  }
  else
  {
    document.getElementById("wachtwoordVergeten").style.display = "block";
  }
}

function naarFww()
{
  if(dienst && dienst != "no")
  {
    document.location = '/index.php?d='+dienst+'&p=fww';
  }
}

function help(tit, txt){
  var wind = window.open("", "Uitleg", "status=1, width=320, height=200, left=100, top=100");
  wind.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n<html>\n<head>\n<title>"+tit+"</title>\n<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n</head>\n<body style=\"font-family: Verdana; font-size: 12px; color: #2D3A4A; background: #D8E7FF url('images/backinfo.jpg') no-repeat center center;\">\n<p><b>"+tit+"</b><br>"+txt+"</p>\n<p align=\"center\"><a href=\"javascript:window.close();\" style=\"color: #2D3A4A;\"><b>Sluiten</b></a></p>\n</body>\n</html>");
  //wind.document.close();
}