var win = null;

function openWin(anchor) {
	if(!win || win.closed) {
		win=window.open('help.cfm#'+anchor+'','','width=500,height=675,screenX=0,screenY=0,top=0,left=0,scrollbars=yes,resizable=yes');
		win.window.focus();
	} else {
		win.window.focus();
		win.window.location=href='help.cfm#'+anchor;
	}
	return true;
}

function winKill() { 
	if(win=='[object]' && !win.closed) { 
		win.window.close();
	}
  return true;
}

function changeAction(theUrl) {
	document.inputs.action = theUrl;
}