// English page scripts

function GaNaar(Nummer) {
	parent.NavBar.KlikButton(Nummer);
}

function Vergroot(foto, breed, hoog)
{
	var ImageWindow = null;
	var xPositie = 0;
	var yPositie = 0;
	var Verschuiven = "no";
	
	if (breed > screen.availWidth) {
		breed = screen.availWidth - 10;
		Verschuiven = "yes";
		hoog = hoog + 16;
	}
	else {
		xPositie = (screen.availWidth - breed) / 2;
	}
	if (hoog > screen.availHeight) {
		hoog = screen.availHeight - 10;
		Verschuiven = "yes";
		breed = breed + 16;
	}
	else {
		yPositie = (screen.availHeight - hoog) / 2;
	}
	ImageWindow = window.open(foto,"","height="+hoog+",width="+breed+",screenX="+xPositie+",screenY="+yPositie+",scrollbars="+Verschuiven+",resizable=0,noresize=yes,toolbar=0,location=0,directories=0,status=0,menubar=0")
	// ImageWindow.moveTo(xPositie,yPositie);
}

function blockError()
{
	return true;
}

window.onerror = blockError;
