<!------------------------------------------------------------------------------

function makeFocus(name)
{
	var field = document.getElementsByName(name);
	field[0].focus();
}

<!------------------------------------------------------------------------------

function submitenter(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;

	if (keycode == 13)
	{
		myfield.form.submit();
		return false;
	}
	else
		return true;
}

<!------------------------------------------------------------------------------

function popitup(topic,width,height)
{
	var url = 'index.php?SCREEN=PopupScreen&topic=' + topic;
	var parms = 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height;

	newwindow=window.open(url,'name',parms);
	if (window.focus) {newwindow.focus()}
	return false;
}

<!------------------------------------------------------------------------------

function popup(url,width,height)
{
	var parms = 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + width + ',height=' + height;

	newwindow=window.open(url,'name',parms);
	if (window.focus) {newwindow.focus()}
	return false;
}

// -->
