function freshWindow(fileName) {
	myWindow  = window.open(fileName, "Zweitfenster", "width=700,height=500,screenX=100,screenX=40,scrollbars = yes,dependent = yes,resizable = yes ");
 	myWindow.focus();
}

function freshWindowAdapts(fileName, width, height, posx, posy) {
	myWindow  = window.open(fileName, "Zweitfenster", "width="+width+",height="+height+",screenX="+posx+",screenY="+posy+",scrollbars = yes,dependent = yes,resizable = yes ");
 	myWindow.focus();
}

function freshWindowNotScroll(fileName, width, height, posx, posy) {
	myWindow  = window.open(fileName, "Zweitfenster", "width="+width+",height="+height+",screenX="+posx+",screenY="+posy+",scrollbars = no,dependent = yes,resizable = no");
 	myWindow.focus();
}
