function PopUpFullWin(URL, winname, height, width) {

	var strOptions, win;

	strOptions="directories,status,menubar,toolbar,titlebar,location,resizable,scrollbars,height=" + height + ",width=" + width;
	if (win) {
		if (win.closed) {
			win = window.open(URL, winname, strOptions, true);
			}
		 else {
			win.focus();
			}
		}
	 else {
		win = window.open(URL, winname, strOptions, true);
		}
	}

function PopUpStdWin(URL, winname, height, width) {

	var strOptions, win;

	strOptions="height=" + height + ",width=" + width;
	if (win) {
		if (win.closed) {
			win = window.open(URL, winname, strOptions, true);
			}
		 else {
			win.focus();
			}
		}
	 else {
		win = window.open(URL, winname, strOptions, true);
		}
	}

