﻿//Inladen Mouseover Buttons

var aButtonPicLibrary = new Array();

aButtonPicLibrary["btnHome"] = new Image(100,253);
aButtonPicLibrary["btnHome"].src = 'img/btnHome.jpg';
aButtonPicLibrary["btnHome_mo"] = new Image(100,253);
aButtonPicLibrary["btnHome_mo"].src = 'img/btnHome_mo.jpg';

aButtonPicLibrary["btnGemak"] = new Image(100,253);
aButtonPicLibrary["btnGemak"].src = 'img/btnGemak.jpg';
aButtonPicLibrary["btnGemak_mo"] = new Image(100,253);
aButtonPicLibrary["btnGemak_mo"].src = 'img/btnGemak_mo.jpg';

aButtonPicLibrary["btnKosten"] = new Image(100,253);
aButtonPicLibrary["btnKosten"].src = 'img/btnKosten.jpg';
aButtonPicLibrary["btnKosten_mo"] = new Image(100,253);
aButtonPicLibrary["btnKosten_mo"].src = 'img/btnKosten_mo.jpg';

aButtonPicLibrary["btnErvaringen"] = new Image(100,253);
aButtonPicLibrary["btnErvaringen"].src = 'img/btnErvaringen.jpg';
aButtonPicLibrary["btnErvaringen_mo"] = new Image(100,253);
aButtonPicLibrary["btnErvaringen_mo"].src = 'img/btnErvaringen_mo.jpg';

aButtonPicLibrary["btnFiles"] = new Image(100,253);
aButtonPicLibrary["btnFiles"].src = 'img/btnFiles.jpg';
aButtonPicLibrary["btnFiles_mo"] = new Image(100,253);
aButtonPicLibrary["btnFiles_mo"].src = 'img/btnFiles_mo.jpg';

aButtonPicLibrary["btnDeOplossing"] = new Image(100,253);
aButtonPicLibrary["btnDeOplossing"].src = 'img/btnDeOplossing.jpg';
aButtonPicLibrary["btnDeOplossing_mo"] = new Image(100,253);
aButtonPicLibrary["btnDeOplossing_mo"].src = 'img/btnDeOplossing_mo.jpg';

aButtonPicLibrary["btnProefrijden"] = new Image(200,253);
aButtonPicLibrary["btnProefrijden"].src = 'img/btnProefrijden.jpg';
aButtonPicLibrary["btnProefrijden_mo"] = new Image(200,253);
aButtonPicLibrary["btnProefrijden_mo"].src = 'img/btnProefrijden_mo.jpg';

function changeButtonPic(oTarget,sLibrary){

	oTarget.src = aButtonPicLibrary[sLibrary].src;

}


sOldPage = 'tblHome'

function switchPage(sNewPage){


	oOldPage = document.getElementById(sOldPage)
	oNewPage = document.getElementById(sNewPage)

	oOldPage.style.display = 'none';
	oNewPage.style.display = 'block';
	
	sOldPage = sNewPage

}

function openPopup(){
	
	var winPopup = window.open("http://www.gofastdelivery.nl/joinus/","Voorwaarden")
	winPopup.focus();
}

