// English version index.html

if (top != self) {
	top.location = location;
} 

var klaar = 0;
var pagina;

function LaadPlaatjes()
{
	Nederlands = new Image();
	Nederlands_ = new Image();
	Engels = new Image();
	Engels_ = new Image();
	Duits = new Image();
	Duits_ = new Image();

	Nederlands.src = "images/welcome41.jpg";
	Nederlands_.src = "images/welcome41_.jpg";
	Engels.src = "images/welcome51.jpg";
	Engels_.src = "images/welcome51_.jpg";
	Duits.src = "images/welcome61.jpg";
	Duits_.src = "images/welcome61_.jpg";
	klaar = 1;
}

function OverImage(nummer)
{
	if (klaar == 1) {
		document.images.NederlandsImage.src = Nederlands.src;
		document.images.EngelsImage.src = Engels.src;
		document.images.DuitsImage.src = Duits.src;
		if (nummer == 1) {
			document.images.NederlandsImage.src = Nederlands_.src;
		}
		if (nummer == 2) {
			document.images.EngelsImage.src = Engels_.src;
		}
		if (nummer == 3) {
			document.images.DuitsImage.src = Duits_.src;
		}
	}
}

function UitImage(nummer)
{
	if (klaar == 1) {
		document.images.NederlandsImage.src = Nederlands.src;
		document.images.EngelsImage.src = Engels_.src;
		document.images.DuitsImage.src = Duits.src;
	}
}

function GaNaarPagina(SelObj)
{
	if (SelObj.options[SelObj.selectedIndex].value != "none") {
		location.href = SelObj.options[SelObj.selectedIndex].value;
	}
}

function KerstKaart()
{
	var ImageWindow = null;
	var xPositie;
	var yPositie;
	
	xPositie = (screen.availWidth - 740) / 2;
	yPositie = (screen.availHeight - 470) / 2;
		
	ImageWindow = window.open("christmas/index.html","","height=470,width=740,screenX="+xPositie+",screenY="+yPositie+",scrollbars=no,resizable=no,noresize=yes,toolbar=0,location=0,directories=0,status=0,menubar=0")
}

// KerstKaart();

