
/*
function popup(html) {
	plainWindow = window.open(html, 'plainlWin', 'width='+792+',height='+594+',scrollbars=yes,screenX=0,screenY=0,resizable=yes')
	plainWindow.moveTo(0,0);
	plainWindow.focus();
	}
*/


function popup(html) {
	var Woerter = html.split("+");
	plainWindow = window.open(Woerter[0], 'plainlWin', 'width='+Woerter[1]+',height='+Woerter[2]+',scrollbars=yes,screenX=0,screenY=0,resizable=yes,left=0,top=0')
	plainWindow.moveTo(0,0);
	plainWindow.focus();
 	}


