﻿

/* POPUP */

var breedte = 800;
var hoogte = 700;

var myWindow = null;

function closeMyWindow() {
    if (myWindow && !myWindow.closed) {
      myWindow.close();
      myWindow = null;
    }
  }


function openPopup(url, width, height) {7
    var x = (screen.width -width) >>1,
        y = (screen.height-height)>>1;
    myWindow = window.open(url,'popWin',
      'width='    + width +
      ',height='  + height +
      ',left='    + x +
      ',top='     + y +
      ',screenX=' + x +
      ',screenY=' + y +
	 /* ',menubar=1' +  */
      ',scrollbars=yes');
    myWindow.focus();
}

function openMyWindow(url, width, height) {
    if (!window.open) return true;
    closeMyWindow();
    var x = (screen.width -width) >>1,
        y = (screen.height-height)>>1;
    myWindow = window.open(url,'popWin',
      'width='    + width +
      ',height='  + height +
      ',left='    + x +
      ',top='     + y +
      ',screenX=' + x +
      ',screenY=' + y +
	 /* ',menubar=1' +  */
      ',scrollbars=yes');
    if (!myWindow) return true;
    myWindow.focus();
    return false;
} 

//end popup
