function popUp(page, width, height, print){
	if(!(width > 0)) width = 300;
	if(!(height > 0)) height = 200;
	if(!(print > 0)) print = 0;
	var openWin = window.open(page,"popUpWin","toolbar=" + print + ",location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,left=300,top=200,width=" + width + ",height=" + height);
	openWin.focus();
}
