// JavaScript Document
<!--
function popitup(url,width,height)
{
	if (!width) { var width = 620; }
	else { width = eval(width) + 20; }
	if (!height) { var height = 420; }
	else { height = eval(height) + 20; }
	if ( height > screen.height ) { height = screen.height; }
	if ( width > screen.width ) { width = screen.width; }
	newwindow=window.open(url,'widpopup','toolbar=no,fullscreen=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no,height=' + height + ',width=' + width);
	if (window.focus) {newwindow.focus()}
	return false;
}
function thumb(id,width,height,num,title,desc)
{
	if (title) {
	document.write('<a href="projecten/' + id + '.htm" onmouseover="image' + id + '.src=\'projecten/' + id + '/foto' + num + '_tb.jpg\';" onmouseout="image' + id + '.src=\'projecten/' + id + '/foto' + num + '_tb_g.jpg\';"><img src="projecten/' + id + '/foto' + num + '_tb_g.jpg" name="image' + id + '" border="0" alt="' + desc + '" title="' + desc + '" /><br />' + title + '</a>');
	}
	else {
		document.write('<a href="' + id + '/foto' + num + '.jpg" onmouseover="image' + num + '.src=\'' + id + '/foto' + num + '_tb.jpg\';" onmouseout="image' + num + '.src=\'' + id + '/foto' + num + '_tb_g.jpg\';" onclick="return popitup(\'' + id + '/foto' + num + '.jpg\',\'' + width + '\',\'' + height + '\')"><img src="' + id + '/foto' + num + '_tb_g.jpg" name="image' + num + '" border="0" alt="Afbeelding ' + num + '" /></a> ');
	}
}
//-->
