<!--
function popupTN(theURL,winName,breite,hoehe,scroll) {
	if (breite == '' || hoehe == '') {
    	features='scrollbars=yes,resizable=yes,width=580,height=400,top=210,left=250'; 
    }
    else if (scroll == "") {
      		features='scrollbars=no,resizable=yes,width=' + breite + ',height=' + hoehe +
      ',top=210,left=250';
        }
        else {
      		features='scrollbars=yes,resizable=yes,width=' + breite + ',height=' + hoehe +
      ',top=210,left=250';
        }
  	window.open(theURL,winName,features);  
}
-->
