// open the window
function openWindow(url, width, height) {
	opener = window.open(url, "closeup", "width=" + width +",height=" + height + ",resizable=1,scrollbars=1");
	opener.resizeTo(width, height);
	opener.focus();
}