var nof_optionsIndex = 0;  
  
function TP_NOF_SubmitHandler_OnInit(destFormName, srcFormName, action)
{
  nof_optionsIndex = 0;
}
  
function TP_NOF_OptionsHandler_OnSetValue(destForm,dstName, name, value)
{
  if (nof_optionsIndex < 2){
    
      if (destForm["on" + nof_optionsIndex])
        destForm["on" + nof_optionsIndex].value = dstName;
        
      if (destForm["os" + nof_optionsIndex])                            
          destForm["os" + nof_optionsIndex].value = value;
          
      nof_optionsIndex++;
  }
}