// *********************************************************
// Einfügen der Smylies in das Formular
// *********************************************************
function insert(gif)
{
	window.document.sendform.message.value +=gif; 
	window.show_chars_left();
	window.focus();
//	this.window.close();
	return;		
};

// *********************************************************
// Darstellen eines Bildes aus der Galerie
// *********************************************************
function bildclick(n)
{
var bild = window.document.getElementById("zielbild");
//window.opener.window.document.form3.neues_bild.value= n;

//    bild.src = "-";
    bild.src = n;
	bild.width = 200;
//	if (window.document.bestellen.bild_nummer) window.document.bestellen.bild_nummer.value = n;
};

function bildclick1(n)
{
//window.opener.window.document.form3.neues_bild.value= n;

//    bild.src = "-";
	window.document.bestellen.bild_nummer.value = n;
};

function ausgabeclick()
{
var b  = new Image();
var bild = window.document.getElementById("zielbild");
b.src = bild.src;
	var b_breite = b.width;
	var b_hoehe = b.height;
	var b_name = b.src;
//	alert (b_breite + ' --- ' + 'b_hoehe');
	ausgabe(b_name, 'Einzelbild', b_hoehe, b_breite);
//	if (window.document.bestellen.bild_nummer) window.document.bestellen.bild_nummer.value = n;
};



function ausgabe(Inhalt,Name,h,w)
{
     var gestalt = "<html><head><title>" + Name + "</title></head><body topmargin='0' leftmargin='0'>";
     var t1 = "<a onClick='self.close()'><img src='";
     var t2 = "'></a></body></html>";
     popup = window.open("","popDialog"," height="+h+", width="+w+", scrollbars=no");
     popup.document.write(gestalt+t1+Inhalt+t2);
     popup.document.close(300);
		popup.setTimeout('window.close()',8000);

};

