function popupTN(theURL,winName,features) {	
	features='scrollbars=yes,resizable=yes,width=800,height=600,screenX=30,screenY=30,top=30,left=30';
  	window.open(theURL,winName,features);  
}

function popupTN1(theURL,winName,features) {	
	features='scrollbars=yes,resizable=yes,width=800,height=600,screenX=130,screenY=400,top=130,left=400';
  	window.open(theURL,winName,features);  
}

function NewWindow(htmlDatei, hoehe, breite) {

    param = "height=" + hoehe + ",width=" + breite;
  	nWindow = window.open(htmlDatei, "Detail", param);
    nWindow.focus();
}



