// JavaScript Document
function MM_openBrWindow(theSRC,theHeight) {
//first remove the full adres from theSRC string by splitting it up...
var splitSRC = theSRC.split("/");

// daarna de URL naar de grote image creëren...
var theURL = ("../html/popup.php?imageName=" + splitSRC[(splitSRC.length-1)]);

if (theHeight < 300){ // dan is het dus een breed plaatje
    window.open(theURL,'closeUp','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=600,height=450');
	}
	else { // dan is het dus een hoog plaatje
	window.open(theURL,'closeUp','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=450,height=600');
	}
}