if (screen.width >= 1280) res = 1280;
else if (screen.width <= 800) res = 800;
else res = 1024;


if (res == 800) {
  rowHeight = 61;
  logoPosTop = 25;
  logoPosRight = 20;
  totalHeight = 415;
  flagHeight = 60;
  flagLeft = 20;
  menuWidth = 220;
  snelheid = 20;
}
else if (res == 1024) {
  rowHeight = 78;
  logoPosTop = 29;
  logoPosRight = 26;
  totalHeight = 611;
  flagHeight = 120;
  flagLeft = 30;
  menuWidth = 280;
  snelheid = 25;
}
else if (res == 1280) {
  rowHeight = 100;
  logoPosTop = 37;
  logoPosRight = 30;
  totalHeight = 775;
  flagLeft = 40;
  flagHeight = 200;
  menuWidth = 360;
  snelheid = 35;
}

centerHeight = totalHeight - 2 * rowHeight;  
