// JavaScript Document

function imagepopup(url) {
	win = window.open('about:blank', 'popupwindow'+Math.round(Math.random()*1000), 'scrollbars=yes,toolbar=no,status=no,width=800,height=600,top=0,left=0');
	if(win) {
		win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head><title>Imageviewer</title></head><body leftmargin="0" topmargin="0" style="margin: 0px;">');
		win.document.write('<script type="text/javascript">');
		win.document.write('function imagepopuploaded(img) {');
		win.document.write('	if(window.imagepopuploaded == true) {');
		win.document.write('		return;');
		win.document.write('	}');
		win.document.write('	window.imagepopuploaded = true;');
		win.document.write('	');
		win.document.write('	window_width = document.body.clientWidth? document.body.clientWidth : window.innerWidth;');
		win.document.write('	window_height = document.body.clientHeight? document.body.clientHeight : window.innerHeight;');
		win.document.write('	');
		win.document.write('	screen_width = screen.availWidth;');
		win.document.write('	screen_height = screen.availHeight;');
		win.document.write('	');
		win.document.write('	image_width = img.width;');
		win.document.write('	image_height = img.height;');
		win.document.write('	if(image_width > screen_width) {');
		win.document.write('		image_height = ((screen_width - 50)/image_width) * image_height;');
		win.document.write('		image_width = screen_width - 50;');
		win.document.write('	}');
		win.document.write('	if(image_height > screen_height) {');
		win.document.write('		image_width = ((screen_height - 50)/image_height) * image_width;');
		win.document.write('		image_height = screen_height - 50;');
		win.document.write('	}');
		win.document.write('	image_width = Math.round(image_width);');
		win.document.write('	image_height = Math.round(image_height);');
		win.document.write('	');
		win.document.write('	img.width = image_width;');
		win.document.write('	img.height = image_height;');
		win.document.write('	resizeBy(image_width-window_width, image_height - window_height);');
		win.document.write('}');
		win.document.write('</scri'+'pt>');
		win.document.write('<img src="'+url+'" border="0" onClick="window.close();" onLoad="imagepopuploaded(this);" alt="Klik om te sluiten">');
		win.document.write('</body></html>');
		win.document.close();
	} else {
		alert('Fout bij het weergeven van de popup. Heb je toevallig een popupblocker?');
	}
}

