	function change_submit(pulldown){
	  if (pulldown.options[0].selected == true){
		 alert("Bitte wählen Sie ...");}
		else {
		 var presentSelection = pulldown.options[pulldown.options.selectedIndex].value;
		 var allInfos = presentSelection.split(",");
		 if (allInfos[1] == 'no')
      window.open(allInfos[0],'_top');
		 else
		  window.open(allInfos[0],'');
		}
	}

  function openPopupPrintArticle(url){
    window.open(url,'name','width=660,height=620,scrollbars=yes');
  }	

  function checkEmailFields(){
    checkForm = document.sendEmail;

    if (!checkNotNull(checkForm.recipient)){
      alert("Bitte geben Sie eine Email Adresse für den Empfänger an.");
      return;
    }
    if (!isValidEmail(checkForm.recipient)){
      alert("Bitte geben Sie eine gültige Email Adresse für den Empfänger an.");
      return;
    }
    if (!checkNotNull(checkForm.senderName)){
      alert("Bitte geben Sie einen Absender Namen an.");
      return;
    }
    if (!checkNotNull(checkForm.sender)){
      alert("Bitte geben Sie eine Email Adresse des Absenders an.");
      return;
    }
    if (!isValidEmail(checkForm.sender)){
      alert("Bitte geben Sie eine gültige Email Adresse für den Absender an.");
      return;
    }

    checkForm.email_sender.value = checkForm.sender.value;
    checkForm.email_recipient.value = checkForm.recipient.value;
    checkForm.sender_name.value = checkForm.senderName.value;
    if (checkForm.emailFormat.selectedIndex == 0)
      checkForm.email_format.value = checkForm.emailFormat.options[0].value;
    else
      checkForm.email_format.value = checkForm.emailFormat.options[1].value;
    checkForm.personal_message.value = checkForm.personalMessage.value;

    checkForm.submit();
  }


