function showImage( title, url, width, height, info )
{	
	var w = window.open( "", "Test", "resizable=no,scrollbars=no,dependent=yes,width=" + ( width + 40 ) + ",height=" + ( height + 80 ) );
	
	w.document.open();
	
	w.document.write( '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n' );
	w.document.write( '   "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">\n' );
	w.document.write( '<html xmlns="http://www.w3.org/1999/xhtml">\n' );
	w.document.write( '<head>' );
	w.document.write( '<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />' );
	w.document.write( '<title>' + title + '</title>\n' );
	w.document.write( '</head>\n' );
	w.document.write( '<body style="margin: 0; padding: 20px 20px 0 20px; background-color: #fff;">\n' );
	w.document.write( '<div><a href="javascript:window.close()" title="Klik for at lukke vinduet."><img src="' + url + '" width="'  + width + '" height="'  + height + '" style="border: none" alt="" /></a></div>\n' );
	w.document.write( '<p style="margin: 2px 0 0 0; font: 11px verdana, sans-serif; color: #333">' + title + '</p>\n' );
	w.document.write( '</body></html>' );
	
	w.document.close();
}