/**
 * makeformer.js
 * 
 * Script enables one-click processing of county official information
 *
 * @package NDACo Custom Modules
 * @author Tao Interactive Inc <info@taointeractive.com>
 * @copyright Copyright (c) 2001-2008, Tao Interactive Inc
 */

if(document.getElementById('formtable_31')){
var table = document.getElementById('formtable_31');
	table.rows[0].deleteCell(3);
	for(i=1; i< table.rows.length; i++){
		if(table.rows[i].cells[4].innerHTML != 'Former'){
			table.rows[i].cells[4].innerHTML += ' <a class="myforms make_former" href="/modules/countyofficials/markasformer.php?form_data_id='+table.rows[i].cells[3].innerHTML+'"><span>MARK AS FORMER</span></a>';
		}
		table.rows[i].deleteCell(3);
	}
}
