function gallerywriter(language, galNeve, imageName, picNumber) {
	if (language == 'en') title = 'Click to enlarge';
	else title = 'Mausklick vergrössert Bilder!';
	output = '';
	output = '<TD align=center><a href="images/' + galNeve + '/' + imageName + '.jpg"';
	output += 'class="highslide" onclick="return hs.expand(this, {captionId: \'caption' + picNumber + '\'})">';
	output += '<img src="images/' + galNeve + '/' + imageName + '_t.jpg" title="' + title + '"></a>';
	output += '<div style="text-align: center; font-size: 8pt; font-family: Arial; a:hover{ color: lightblue } a:link{ color: green } a:visited{ color: green };">' + imageName;
	output += '</div><div class="highslide-caption" id="caption' + picNumber + '">' + imageName;
	output += '</div></TD>';

	document.write(output);
	}
