function ap(id,airport,feld1,feld2,feld3)
	{
	window.document.getElementById(feld1).value=id;
	window.document.getElementById(feld2).value=airport;
	window.document.getElementById(feld3).value=airport;
	}
	
function al(id,airline,feld1,feld2,feld3)
	{
	window.document.getElementById(feld1).value=id;
	window.document.getElementById(feld2).value=airline;
	window.document.getElementById(feld3).value=airline;
	}

function ac(id,aircraft,feld1,feld2,feld3)
	{
	window.document.getElementById(feld1).value=id;
	window.document.getElementById(feld2).value=aircraft;
	window.document.getElementById(feld3).value=aircraft;
	}

function gross(id,breite,hoehe)
	{
	var pfad = "showpic.php?id=" + id;
	var win = window.open(pfad,"showpic","width=" + breite + ", height=" + hoehe + ", left=0px, top=0px, scrollbars=no, resizable=yes");
	}

function bewerten(session,id)
	{
	var pfad = "bewertung.php?session=" + session + "&Dataid=" + id;
	var win = window.open(pfad,"showpic","width=170px, height=210px, left=200px, top=200px");
	}

/* Gästebuch */

function post(Smilie) {
document.eintragen.gbInhalt.value =
document.eintragen.gbInhalt.value + Smilie;
}

function post(color) {
document.eintragen.gbInhalt.value =
document.eintragen.gbInhalt.value + color;
}

function change(id,page,ses)	{
var pfad="bearbeiten.php?id=" + id + "&change=1&page=" + page + "&session=" + ses;
var win=window.open(pfad,"change","width=600, height=750");
}