function ibtn(text, helpid){
	//button anzeigen und Link erzeugen
	document.write('<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="/foliatec/assets/images/icons/i-button.gif" border="0"></a>');
	//div erzeugen
	document.write('<div id=');
	document.write(helpid);
	//style für das Popup setzten
	document.write(' style="border: 2px solid black; padding: 0px; position: absolute;');
	document.write(' width: 300px; background-color: white; overflow: auto; visibility: hidden;">');
	document.write('<table border=0 cellpadding=0 cellspacing=0 style="width:100%"><tr><td style="width:100%; 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="/foliatec/assets/images/icons/logout_comic.gif" align=right border=0></a></td></tr><tr><td style="padding:5px; text-align: left">');
	document.write(text);
	document.write('</td></tr></table></div>');
}