function Go (x) {
     top.location.href = x;

}

function checkbox_auswerten(box,theId) { 
   if(document.getElementById) { 
    
      if(box.checked) { 
		var neu = theId.replace(box.name + "=empty", box.name + "=checked");

		top.location.href = neu;
      } 
      else { 
			var neu = theId.replace(box.name + "=checked", box.name + "=empty");
    	top.location.href = neu;
      } 
   } 
}



function Hinzufuegen (Feld) {

switch (Feld) {
  case "Kuenstlerinnenname":
    window.document.profil.Kuenstlerinnenname.value = window.document.profil1.Kuenstlerinnenname1.value;
    break;
  case "Vorname":
   window.document.profil.Vorname.value = window.document.profil1.Vorname1.value + "lala";
    break;
  case "Nachname":
   window.document.profil1.Nachname.value = window.document.profil1.Nachname1.value;
    break;
  case "PLZ":
    window.document.profil.PLZ.value = window.document.profil1.PLZ1.value;
    break;
  case "URL":
   window.document.profil.URL.value = window.document.profil1.URL1.valu;
    break;
  case "Ort":
   window.document.profil.Ort.value = window.document.profil1.Ort1.value ;
    break;
  case "Ausbildung":
    window.document.profil.Ausbildung.value = window.document.profil1.Ausbildung1.value ;
    break;
  case "Arbeitgeber_Projekte":
    window.document.profil.Arbeitgeber_Projekte.value = window.document.profil1.Arbeitgeber_Projekte1.value;
    break;
  case "Hobbies":
    window.document.profil.Hobbies.value = window.document.profil1.Hobbies1.value;
    break;
  case "ich_suche":
    window.document.profil.ich_suche.value =  window.document.profil1.ich_suche1.value;
    break;
  case "ich_biete":
    window.document.profil.ich_biete.value = window.document.profil1.ich_biete1.value;
    break;
  case "Sonstiges":
    window.document.profil.Sonstiges.value = window.document.profil1.Sonstiges1.value;
    break;
  case "Email":
    window.document.profil.Email.value = window.document.profil1.Email1.value;
    break;
  case "Passwort":
    window.document.profil.Passwort.value = window.document.profil1.Passwort1.value;
    break;

}
}


function Hinzufuegen_test (Zeichen) {

  window.document.profil1.Nachname.value = window.document.profil1.Nachname1.value + Zeichen;
}
