function newwindow(page, width, height) {
	/* Create the new window and update the sidebars array object */
	winopts = 'status,scrollbars=yes,toolbar=0,menubar=0,resizable=yes';
	var tempref = window.open(page,'popup','toolbar=no,width=' + width + ',height=' + height + ',' + winopts);
	tempref.focus();
}