Ich versteh nicht ganz.
function createWindow(title, width, popupColor, windowID, minimizeIcon, x, y)
{
if (document.getElementById('Window ' + windowID)) {
}
else {
new JSWindow(" " + title, document.getElementById("Div" + windowID), x, y, windowID, width, popupColor, minimizeIcon);
}
}
<input type="button" value="Open Window 1" onClick="createWindow('titel', 310, '#D6E1F5', main, 1, 1, 220, 140);">
Wobei "main" der Name des Ziel-Frames ist. Hab ich es falsch verstanden?