function tourimagewriter(language, tourNr, imageNr, seqNr, titletext) {
	if (language == 'en') title = 'Click to enlarge';
	else title = 'Mausklick vergrössert Bilder!';
	output = '';
	// alert(language,tourNr,imageNr,seqNr,titletext);
	output = '<a href="images/turafotok/tour' + tourNr + '/' + imageNr + 'big.jpg"';
	output += 'class="highslide" onclick="return hs.expand(this, {captionId: \'caption' + seqNr + '\'})">';
	output += '<img src="images/turafotok/tour' + tourNr + '/' + imageNr + '.jpg" title="' + title + '" border=0 />';
	output += '</a>';
	output += '<div class="highslide-caption" id="caption' + seqNr + '">' + titletext + '</div>';

	document.write(output);
	}
