/*
 *	Eine Datei mit typischen Javascript-Konstrukten.
 */


function openWindow(address, name, conf) {
	
	var confString= "";
	switch (conf) {
		case "1":
			confString= "width=950,height=700,left=50,top=50,scrollbars=yes,resizable=yes"
			break;
		case "2":
			confString= "width=600,height=650,left=50,top=50,scrollbars=yes,resizable=yes"
			break;
	}
	
	newWindow= window.open(address, name, confString);
	newWindow.focus();
}
