function kostenabschaetzen() {

var servicio, numerodepalabras, x, presupuesto, i; 

servicio = document.Pressupost.Servei.options[document.Pressupost.Servei.options.selectedIndex].value;

numerodepalabras = document.Pressupost.numerodepalabras.value;

if (servicio == "Traducción") {
	x=0.10;
	presupuesto=(x*numerodepalabras);
	}

if (servicio == "Corrección") {
	x=0.05;
	presupuesto = x* numerodepalabras;
	}

presupuesto = 3 + presupuesto;

if (presupuesto < 5) {
	presupuesto=5;
	}

document.Pressupost.presupuesto.value=presupuesto;
}

function Hinzufuegen(Zeichen)
{
     window.document.Eingabeformular.tsearch.value =
     window.document.Eingabeformular.tsearch.value + Zeichen;
}

function clearfield()  {
   window.document.Eingabeformular.tsearch.value = '';
}


function sonderzeichen()
  {
   open("http://www.super-spanisch.de/pages/popup/sonderzeichen.html","Sonderzeichen","width=260,height=240,screenX=0,screenY=0,status=no,resizable=no,menubar=no,locationbar=no,hotkeys=no"); 
   }
function fragezeichen()
  {
   open("http://www.super-spanisch.de/pages/popup/fragezeichen.html","Fragezeichen","width=500,height=120,screenX=0,screenY=0,status=no,resizable=no,menubar=no,locationbar=no,hotkeys=no"); 
   }

