/*	global_verify.js	*/

function verify (form) {
  if (document.getElementById) {
    var input = document.createElement('INPUT');
      if (document.all) { // what follows should work 
                          // with NN6 but doesn't in M14
        input.type = 'hidden';
        input.name = 'verify';
        input.value = 'verified';
      }
      else if (document.getElementById) { // so here is the
                                          // NN6 workaround
        input.setAttribute('type', 'hidden');
        input.setAttribute('name', 'verify');
        input.setAttribute('value', 'verified');
      }
    form.appendChild(input);
  }
	return (true);
}
/* Original source:  http://209.85.165.104/search?q=cache:vDssV7GOVhAJ:www.faqts.com/knowledge_base/view.phtml/aid/1785+onclick+adds+hidden+field&hl=en&gl=us&ct=clnk&cd=1&client=firefox-a */

/*	/global_verify.js	*/