
function output()
{
var field = document.mailform	
var f00 = 'Keine Angabe';
if (field.title[0].checked == true)
f00='Frau';
else if (field.title[1].checked == true)
f00 = 'Herr';
var f01 = field.name.value;
var f02 = field.town.value;
var f03 = field.country.value;
var f04 = field.phone.value;
var f05 = field.mobile.value;
var f06 = field.fax.value;
var f07 = field.e_mail.value;
var f08 = field.message.value;

              
if(document.getElementById)
{
document.getElementById('outform').txt.value='Anrede: '+f00+'\n'+'Name: '+f01+'\n'+'Ort: '+f02+'\n'+'Land: '+f03+'\n'+'Telefon: '+f04+'\n'+'Mobil: '+f05+'\n'+'Fax: '+f06+'\n'+'E-Mail: '+f07+'\n'+'Mitteilung: '+f08;              
}
else if(document.all)
{
document.all.outform.txt.value='Anrede: '+f00+'\n'+'Name: '+f01+'\n'+'Ort: '+f02+'\n'+'Land: '+f03+'\n'+'Telefon: '+f04+'\n'+'Mobil: '+f05+'\n'+'Fax: '+f06+'\n'+'E-Mail: '+f07+'\n'+'Mitteilung: '+f08;
}
else
{
window.document.outform.txt.value='Anrede: '+f00+'\n'+'Name: '+f01+'\n'+'Ort: '+f02+'\n'+'Land: '+f03+'\n'+'Telefon: '+f04+'\n'+'Mobil: '+f05+'\n'+'Fax: '+f06+'\n'+'E-Mail: '+f07+'\n'+'Mitteilung: '+f08;
}             
}
function no_output()
{
if(document.getElementById)
{
document.getElementById('outform').txt.value= '';
}
else if(document.all)
{
document.all.outform.txt.value='';
}
else
{
window.document.outform.txt.value='';
}
}