function h_start() {
	document.write('<table cellspacing=0 cellpadding=0 border=0><tr valign=bottom>');
}
function v_start() {
	document.write('<table cellspacing=0 cellpadding=0 border=0>');
}
function h_end() {
	document.write('</tr></table>');
}
function v_end() {
	document.write('</table>');
}
function he_start() {
	document.write('<td>');
}
function ve_start() {
	document.write('<tr><td align=center>');
}
function he_end() {
	document.write('</td>\n');
}
function ve_end() {
	document.write('</td></tr>\n');
}
function hiero(hie, w, h, s) {
	document.write('<img src=http://www.aegyptologie.com/forum/glyphs/' + s + hie + '.gif width=' + w + ' height=' + h + '>');
}
function hstrut(n) {
	document.write('<td><img src=http://www.aegyptologie.com/forum/glyphs/strut.1.gif height=1 width=' + n + '></td>');
}
function vstrut(n) {
	document.write('<tr><td><img src=http://www.aegyptologie.com/forum/glyphs/strut.1.gif width=1 height=' + n + '></td></tr>');
}

// ab hier: Komposit-Befehle

function h_hiero(hie, w, h, s) {
	he_start();
	hiero(hie, w, h, s);
	he_end();
}
function v_hiero(hie, w, h, s) {
	ve_start();
	hiero(hie, w, h, s);
	ve_end();
}
function hs_hiero(hie, w, h, s) {
	h_start();
	h_hiero(hie, w, h, s);
}
function vs_hiero(hie, w, h, s) {
	v_start();
	v_hiero(hie, w, h, s);
}
function hst_hiero(t, hie, w, h, s) {
	hstrut(t);
	h_hiero(hie, w, h, s);
}
function vst_hiero(t, hie, w, h, s) {
	vstrut(t);
	v_hiero(hie, w, h, s);
}
function hste_hiero(t, hie, w, h, s) {
	hst_hiero(t, hie, w, h, s);
	h_end();
}
function vste_hiero(t, hie, w, h, s) {
	vst_hiero(t, hie, w, h, s);
	v_end();
}
function strut_he(n) {
	hstrut(n);
	he_start();
}
function strut_ve(n) {
	vstrut(n)
	ve_start();
}
function hor_end() {
	he_end();
	h_end();
}
function ver_end() {
	ve_end();
	v_end();
}
function hor_start() {
	h_start();
	he_start();
}
function ver_start() {
	v_start();
	ve_start();
}

