//fenster oeffnen fuer schnupperrezept-popup
var popRez
function rezPopup (htmldoc,windowname) {
		 if (popRez && popRez.closed != true) {
		 		 		 window.popRez.close();
		 		 }		 		 		 popRez=window.open(htmldoc,"popRez","toolbar=no,location=\'Users\',directories=no,status=no,resizable=yes,copyhistory=no,menubar=no,scrollbars=yes,width=635,height=465,left=200,top=200");
		 		 
		 		 if (popRez && !popRez.creator) {
		 		 		 popRez.creator=self;
		 		 }
		 		 if (window.focus) {
		 		 		 popRez.focus();
		 		 }
		 }
