function showvorlage(text, helpid,link){
	//var pos = getPosition(document.getElementById('langnav'));
	//alert(pos.x + '/' + pos.y);
	//button anzeigen und Link erzeugen
	document.write('<a href="#');
	document.write(helpid);
	document.write('" onclick="document.getElementById(\'');
	document.write(helpid);
	document.write('\').style.visibility=((document.getElementById(\'');
	document.write(helpid);
	document.write('\').style.visibility == \'visible\') ? \'hidden\' \: \'visible\'); return false;">');
	document.write(link);
	document.write('</a>');
	//div erzeugen
	document.write('<div id=');
	document.write(helpid);
	//style für das Popup setzten
	document.write(' style="border: 1px solid black; position: absolute; padding: 0px; width: 300px; background-color: white; visibility: hidden; ">');
	document.write('<div style="width:300px; height: 16px; background-color:#dcdcdc;"><a href="#" onclick="document.getElementById(\'');
	document.write(helpid);
	document.write('\').style.visibility=((document.getElementById(\'');
	document.write(helpid);
	document.write('\').style.visibility == \'visible\') ? \'hidden\' \: \'visible\'); return false;">');
	document.write('<img src="../assets/images/icons/logout_comic_small.gif" style="float:right;border:none;"></a></div><div style="width:290px; height:200px; padding:5px; text-align:left; font-size:10px; overflow:auto;">');
	document.write(text);
	document.write('</div></div>');
}