function notInWindow() {

 var win = new Window("win2", {className: "alphacube", top:240, left:260, width:400, height:150, title:"Figyelmeztetés",
                          maximizable: false, minimizable: false});
 win.setContent(warn_notin);
 win.setDestroyOnClose();
 win.showCenter();
 
}