//Preload Images
var mmImg01=new Image;
mmImg01.src="fa_news_on.png";
var mmImg02=new Image;
mmImg02.src="fa_bio_on.png";
var mmImg03=new Image;
mmImg03.src="fa_tour_on.png";
var mmImg04=new Image;
mmImg04.src="fa_photo_on.png";
var mmImg05=new Image;
mmImg05.src="fa_audio_on.png";
var mmImg06=new Image;
mmImg06.src="fa_video_on.png";
var mmImg06=new Image;
mmImg06.src="fa_press_on.png";
var mmImg06=new Image;
mmImg06.src="fa_contact_on.png";

function resize() {
	var iframe = document.all.content;
	
	iframe.height=window.frames("content").document.body.scrollHeight;
  }

function rollOver(action,id) {
  if(action=="on"){
    document.getElementById(id).src="fa_"+id+"_on.png";
  }else if(action=="off"){
    document.getElementById(id).src="fa_"+id+"_off.png";
  }else if(action=="imgon"){
    document.getElementById(id).className="img_on";
  }else if(action=="imgoff"){
    document.getElementById(id).className="img_off";
  }
}

function openPopup(url,w,h) {
  var sPop = window.open("about:blank",null,"width="+w+",height="+h+",status=yes,toolbar=no,menubar=no,location=no");
  var sContent="<html><head><meta http-equiv='imagetoolbar' content='no'></head><body onselectstart='return false;' ondragstart='return false;' oncontextmenu='return false;'><img width='"+w+"' height='"+h+"' style='position:absolute;left:0px;top:0px;cursor:hand;' src='"+url+"' onclick='window.close();'></body></html>";
  sPop.document.write(sContent);
}

function checkform(){

  if (document.getElementById('naam').value == ""){
    alert('Please enter your name');
  }else if(document.getElementById('bericht').value == ""){
    alert('Please enter a message');
  }else{
    document.getElementById('boardform').submit();
  }
}

function checkbooking(){

  if (document.getElementById('naam').value == ""){
    alert('Please enter your name');
  }else if(document.getElementById('telefoon').value == ""){
    alert('Please enter a telephone number');
  }else if(document.getElementById('mail').value == ""){
    alert('Please enter your e-mailaddress');
  }else if(document.getElementById('datum').value == ""){
    alert('Please enter a date for me to show up');
  }else if(document.getElementById('plaats').value == ""){
    alert('Please enter a location');
  }else if(document.getElementById('duur').value == ""){
    alert('Please enter an estimated duration of the performance');
  }else{
    document.getElementById('bookingform').submit();
  }
}

function checkcontact(){

  if (document.getElementById('naam').value == ""){
    alert('Please enter your name');
  }else if(document.getElementById('bericht').value == ""){
    alert('Please enter a message');
  }else{
    document.getElementById('contactform').submit();
  }
}