// JavaScript Document

function openWindow (url, width, height) {
 fenster = window.open(url, "atl_win", "width=" + width + ",height=" + height + ",status=yes,scrollbars=yes,resizable=no");
 fenster.focus();
}
