function imgpopup(imagetitle,imagename)
{
	var imgpage="<html><head><title>"+imagetitle+"</title>";
	imgpage+="<link rel='stylesheet' type='text/css' href='./css/default.css'></head>";
	imgpage+="<script>";
	imgpage+="var imagefile = new Image();";
	imgpage+="imagefile.src='"+imagename+"'";
	imgpage+="</script>";
	imgpage+="<body onload='window.resizeTo(imagefile.width+50,imagefile.height+115);self.focus()'>";
	imgpage+="<br><center>";
	imgpage+="<img src='"+imagename+"' border='0'>";
	imgpage+="<br><br><a href='javascript:window.close()'>";
	imgpage+="Stäng fönstret</a>";
	imgpage+="</body></html>";
	imgwin=window.open("","imgwin","dependent,width=80,height=50,scrollbars=no,resizable");
	imgwin.document.write(imgpage);
	imgwin.document.close();
	imgwin.focus();	
}


