<!--

/**
* process
*
* @access      public 
* @author      girardet@worldsoft.ch
* @version     0.0.1 
* @package     next 
* @subpackage  package_module
*
* @param   poll  form_action  :  Formular of the company_management_customization.tpl
* @return  void
*/
function process(pollAction) {
    	
	this.document.forms[0].form_action.value = pollAction;
	this.document.forms[0].submit();
	
	return true;
}


/**
* process
*
* @access      public 
* @author      girardet@worldsoft.ch
* @version     0.0.1 
* @package     next 
* @subpackage  package_module
*
* @param   form  form_action  :  Formular of the company_management_customization.tpl
* @return  void
*/
function submitPoll(pollAction, pageNum, IDQuestion) {
    
	this.document.forms[0].form_action.value = pollAction;
	this.document.forms[0].id_question.value = IDQuestion;
	this.document.forms[0].page_num.value = pageNum;
	
	this.document.forms[0].submit();
	
	return true;
}
	
//-->	
