// PopUp Windows

function PopupFenster1() {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width.
iMyWidth = (window.screen.width/2) - (383);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (337);
//Open the window.
var win2 = window.open("demo-create-send.html","Window2","status=no,height=674,width=766,resizable=no,scrollbars=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
win2.focus();
}

function PopupFenster2() {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width.
iMyWidth = (window.screen.width/2) - (383);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (375);
//Open the window.
var win2 = window.open("demo-reporting.html","Window2","status=no,height=674,width=766,resizable=no,scrollbars=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
win2.focus();
}

function PopupFenster3() {
var iMyWidth;
var iMyHeight;
//half the screen width minus half the new window width.
iMyWidth = (window.screen.width/2) - (383);
//half the screen height minus half the new window height (plus title and status bars).
iMyHeight = (window.screen.height/2) - (375);
//Open the window.
var win2 = window.open("demo-lowcost.html","Window2","status=no,height=674,width=766,resizable=no,scrollbars=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
win2.focus();
}


