//
// popup.js
//
// JavaScript code for pop-up windows
//

function popUp(url, width, height) {
	var pad = 30;
	width = width + pad;
	height = height + pad;
	window.open(url, 'popUp', 'directories=no,persnalbar=no,resizeable=yes,scrollbars=yes,status=no,titlebar=yes,toolbar=no,left=10,top=10,screenX=10,screenY=10,width=' + width +',height=' + height);
}
