function newWin1(which, iWidth, iHeight){
	if (!iWidth){
   		iWidth = 700;
	}
	if (!iHeight){
		iHeight = 500;
	}	
   nuWin = window.open(which,"definition"," WIDTH=" + iWidth + ", height=" + iHeight + ", left=50, top=50,menubar=0,resizable=0,scrollbars=1");
   nuWin.focus(which);
}