function laddaBild(url) {
	var foo = new Image();
	foo.src = url;
	if (foo.width != 0) {
		visaBild(foo);
	}
	else {
		foo.onload = visaBild;
	}
}

function visaBild() {
	var bild;
	if (typeof this.src == 'undefined')
	{
		bild = arguments[0];
	} else {
		bild = this;
	}
	var url = bild.src;
	var bildnamn = url.substring(url.lastIndexOf('/')+1, url.lastIndexOf('.')).replace('.', '_');
	var fonster = window.open('', bildnamn,
	'channelmode = no, ' +
	'directories = no, ' +
	'fullscreen = no, ' +
	'location = no, ' +
	'menubar = no, ' +
	'resizable = no, ' +
	'status = no, ' +
	'toolbar = no, ' +
	'width = ' + (bild.width + 10) + ', ' +
	'height = ' + (bild.height + 10));
	var doc = fonster.document;
	doc.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	doc.writeln('<html xmlns="http://www.w3.org/1999/xhtml"><head>');
	doc.writeln('<title>' + bildnamn + '</title>')
	doc.writeln('</head><body style="margin: 5px; padding: 0; background: #000; overflow: hidden">');
	doc.writeln('<img src="' + url + '" alt="' + bildnamn + '" />');
	doc.writeln('</body></html>');
	doc.close();
	fonster.focus();
}
