﻿// JavaScript-Datei
// custom functions for client
function openWindow(theUrl, theName, w, h, location, menubar, scrollbars, status, toolbar, resizeable) {
    //external window opener
    clientWindow = window.open(theUrl, theName, "width=" + w + ",height=" + h + ",scrollbars=" + scrollbars + ",location=" + location + ",menubar=" + menubar + ",toolbar=" + toolbar + ",status=" + status + ",resizable=" + resizeable + "");
    clientWindow.focus();
}

