// bildtausch:
function bilderladen() {
if(document.images)
	{drucken_sign= new Image();
	 drucken_sign.src= "/fileadmin/images/drucken.gif";
	 drucken_sign_hi= new Image();
	 drucken_sign_hi.src= "/fileadmin/images/drucken_hi.gif";
	}
 }
   
 function bildtausch(name,neu)
 {
 if(document.images)
	{document.images[name].src= neu.src;
	}
 }


// print_fenster:
function druck(URL)
{	
	printvar = window.open(URL,"printwin","width=667,height=450,screenX=150,screenY=100,resizable=no,scrollbars=yes,menubar=yes,status=yes");
	window.printvar.focus();
}

// weiterempfehlen_fenster:
function empfehlen(URL)
{	
	empfvar = window.open(URL,"empfwin","width=500,height=375,screenX=150,screenY=100,resizable=no,scrollbars=no,menubar=no,status=yes");
	window.empfvar.focus();
}

// mailformplus fokussieren des Cursors
function fokussieren () {
  if (window.document.Formular.vorname.value == "") { window.document.Formular.vorname.focus(); return false;} 
 if (window.document.Formular.nachname.value == "") { window.document.Formular.nachname.focus(); return false;} 
 if (window.document.Formular.strasse.value == "") { window.document.Formular.strasse.focus(); return false;} 
 if (window.document.Formular.plz.value == "") { window.document.Formular.plz.focus(); return false;} 
 if (window.document.Formular.tel.value == "") { window.document.Formular.tel.focus(); return false;} 
 if (window.document.Formular.email.value == "") { window.document.Formular.email.focus(); return false;} 
return true;
}

