function openByUNID ( UNID ) {
	var options = 'resizable, status, dependent, width=780, height=640, left=40, top=40';
	var URL = "0/" + UNID + '?open&login';
	window.open ( URL, '', options );
}
function doSubmit() {
document.forms[0].submit();
}
function uppercase() {
	key = window.event.keyCode;
	if ((key > 0x60) && (key < 0x7B)) window.event.keyCode = key-0x20;
}

