// NTI Upstream

function CI(ImageID, ImageSource)
{	ImageID.src = ImageSource; }

function changeAction(ActionNumber)
{
	document.forms["FormB"].Action.value = ActionNumber
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


// Re-direct parent page
// used in conjunction with window.close
newWindow = null

function updateParent(newURL) 
{
	opener.document.location = newURL;
	if (newWindow && !newWindow.closed) 
	{
		newWindow.close()
	}
}