function visaBild(bildnamnOchPath, topAlt) {
	newwindow = window.open("","newwindow","width=200,height=200,scrollbars=no,left=20,top=20");
	newwindow.document.open();
	newwindow.document.write('<html><head><meta http-equiv=\"imagetoolbar\" content=\"no\"><title>Harambee - '+topAlt+'</title></head>\n');
	newwindow.document.write('<body bgcolor="#E3F0C1" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onblur="self.close()">\n');	
	newwindow.document.write('');
	newwindow.document.write('<img src=\"'+bildnamnOchPath+'\" alt=\"'+topAlt+'\" name="bild" onload="resizeTo(document.bild.width+10,document.bild.height+59);">\n');
	newwindow.document.write('</body></html>');
	newwindow.document.close();
	newwindow.focus();
}