// JavaScript Document
function EntryWindow (URL,title,width,height) {
	Fenster = window.open(URL, title, "width="+ width + ",height="+ height + ",left=150,top=200");
	Fenster.focus();
}


