

var bgcolor = "#ffffff";
var linkcolor = "#800000";
var vlinkcolor = "#800000";
var alinkcolor = "#800000";

var stimagetree = "img/";
var stheight = 300
var stwidth = 300

function zoomImage(imagefile,imagetree) {
	if (imagetree == null) {imagetree = stimagetree;}
	var imgadress = imagetree+imagefile;
	var Bild = new Image();
	Bild.src = imgadress;
	var wheight = Bild.height;
	if ( wheight == 0 ) { wheight = stheight; }
	var wwidth = Bild.width;
	if ( wwidth == 0 ) { wwidth = stwidth; }
	wwidth += 20;
	wheight += 50;
	var Window = window.open("","bildfenster","height="+wheight+",width="+wwidth+",status=no,location=no,menubar=no,toolbar=no");
	Window.document.write("<html><head><title>Larm Assistans AB</title></head><body bgcolor=\"" + bgcolor + "\" link=\"" + linkcolor + "\" alink=\"" + alinkcolor + "\" vlink=\"" + vlinkcolor + "\">");
	Window.document.write("<center><img src=\"" + Bild.src + "\" border=\"1\"><br>");
	Window.document.write("<a href=\"javascript:self.close()\" style=\"text-decoration:underline;\">Stäng fönster</a></center>");
	Window.document.write("</body></html>");
}
