// ###########################################
// ###  E-Mail-Verschlüsselung             ###
// ###########################################
function UnCryptMailto( s )
{
    var n = 0;
    var r = "";
    for( var i = 0; i < s.length; i++)
    {
        n = s.charCodeAt( i );
        if( n >= 8364 )
        {
            n = 128;
        }
        r += String.fromCharCode( n - 1 );
    }
    return r;
}

function linkTo_UnCryptMailto( s )
{
    location.href=UnCryptMailto( s );
}

  var numArt=10;
  function openwindow(URLlink,URLtarget)
  {
  newwin=window.open(URLlink, URLtarget,'resizable=yes,width=650,height=450,scrollbars=yes,titlebar=no,status=no,menubar=no,toolbar=no,location=no,left=20,top=20');
  };
  
function fieldCheck ()
	{	
		if ((document.email.name.value == "") || (document.email.telefon.value == "") || (document.email.email.value == "") || (document.email.betreff.value == "") || (document.email.nachricht.value == "") )
			{	alert ('Bitte füllen Sie alle Felder aus, damit Sie Ihre Nachricht senden können.'); return false;	}
				else {	return true;	}
			}
			
