function openThumbnail(what) {
	var win = window.open("","thumbnail","menubar=no,toolbar=no,scrollbars=no,height=450,width=600,top=0,left=0");
	win.document.open();
	win.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>");
	win.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='da'><head><meta http-equiv='imagetoolbar' content='no' />");
	win.document.write("<title>"+what.title+"</title><link href='/css/screen.css' rel='stylesheet' type='text/css' media='screen' />");
	win.document.write("</head><body class='img' onclick='window.close()'><div>");
	win.document.write("<img style='width:600px;height:450px;' src='"+what.href+"' alt='"+what.title+"' title='Klik for at lukke' />");
	win.document.write("</div></body></html>");
	win.document.close();
	return !win;
}
function openThumbnail1(what) {
	var win = window.open("","thumbnail1","menubar=no,toolbar=no,scrollbars=no,height=500,width=375,top=0,left=0");
	win.document.open();
	win.document.write("<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>");
	win.document.write("<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='da'><head><meta http-equiv='imagetoolbar' content='no' />");
	win.document.write("<title>"+what.title+"</title><link href='/css/screen.css' rel='stylesheet' type='text/css' media='screen' />");
	win.document.write("</head><body class='img' onclick='window.close()'><div>");
	win.document.write("<img style='width:375px;height:500px;' src='"+what.href+"' alt='"+what.title+"' title='Klik for at lukke' />");
	win.document.write("</div></body></html>");
	win.document.close();
	return !win;
}