part1='<html><head><style type="text/css">body{overflow:hidden;}  </style><script language="javascript" type="text/javascript">function fixSize(){self.resizeTo(document.bild.width+10, document.bild.height+28);}</script><title>Bild</title></head><body onLoad="fixSize(), window.focus()"><img src="'
part2='" name="bild" border="0"></body></html>'


function showPic(bildnamn)
{
	NewWindow = window.open("", "pop", "toolbar=0, status=0, menubar=0, scrollars=0, resizable=0, location=0, width=300, height=200");
	NewWindow.document.write(part1+bildnamn+part2);
	NewWindow.document.close();
}
