// auteur: 		Rutger van der Heide
// Datum:		19-02-2005
// Versie:		1.0

function detectResolution() {
	// Schermresolutie opvragen
	if ((screen.width>=1280) && (screen.height>=1024)) {
		window.location="index.php?formaat=groot";
	}
}

function openPopupS(url, w, h) {
	popUpWin = open(url, 'popUpWin', 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=' + w + ', height=' + h);
	popUpWin.creator = self;
}

function openPopup(url) {
	popUpWin = open(url, 'popUpWin', 'toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=480, height=580');
	popUpWin.creator = self;
}
