function ShowWindow(sType, sUrl) {
	var sOptions = "";

	switch(sType) {
		case "Voorbeeld1":
			sOptions = "height=265,width=340";
			break;
		case "Voorbeeld2":
			sOptions = "height=350,width=550";
			break;
		case "Voorbeeld3":
			sOptions = "height=366,width=715";
			break;
		case "Voorbeeld4":
			sOptions = "height=300,width=300";
			break;
		case "Voorbeeld5":
			sOptions = "height=340,width=350";
			break;
		case "Voorbeeld6":
			sOptions = "height=170,width=470";
			break;
	}

	window.open(sUrl,"Voorbeeld", sOptions + ",left=150,top=50,directories=no,location=no,menubar=no,resizeable=no,status=no,toolbar=no,scrollbars=no");
}


function MeerInfo(lID){
	var w = 472;
	var h = 235;
	var left = ((screen.width - w) / 2);
	var top = (screen.height - h) / 2;
	var winprops = 'height='+h+',width='+w+',top='+top+',left='+left+',scrollbars=no,resizable=no';

	win = window.open('meerinfo.php?lArticleID=' + lID, 'Modeltruck', winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

