function popUp(page, width, height) {
	if (!width)	width = 400;
	if (!height) height = 300;
	
	popUpWin = window.open(page, 'popUpWin', 'scrollbars,resizeable,width=' + width + ',height=' + height);
	
	return;
}