﻿

/* POPUP */


var breedte = 400;
var hoogte = 350;

var scbreedte = 1000;
var schoogte = 110;

function openPopup(url, width, height) {
    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=0' + 
	  ',location=0' + 
	  ',toolbar=0' + 
	  ',status=0' + 
      ',scrollbars=0');
    myWindow.focus();
}


//end popup
