function go(where)
{
	document.location.href = where;
}

function goFocus(where)
{
	where.focus();
}

function goDisable(item)
{
	item.disabled = true;
}

function goPopup(thisURL,w,h)
{
	window.open (thisURL, 'new_window', 'toolbar=no,width=' + w + ',height= ' + h + 'status=no,resizable=yes,menubar=no,location=no');
}