function light(row){
    //document.getElementById('cell'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell1'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell2'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell3'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell4'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell5'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell6'+row).style.backgroundColor = 'yellow';
	document.getElementById('cell7'+row).style.backgroundColor = 'yellow';
}

function dark(row){
    //document.getElementById('cell'+row).style.backgroundColor = 'white';
	document.getElementById('cell1'+row).style.backgroundColor = 'white';
	document.getElementById('cell2'+row).style.backgroundColor = 'white';
	document.getElementById('cell3'+row).style.backgroundColor = 'white';
	document.getElementById('cell4'+row).style.backgroundColor = 'white';
	document.getElementById('cell5'+row).style.backgroundColor = 'white';
	document.getElementById('cell6'+row).style.backgroundColor = 'white';
	document.getElementById('cell7'+row).style.backgroundColor = 'white';
}

function resetForm(){
    document.getElementById('streetNum').value = '';
    document.getElementById('streetName').value = '';
    document.getElementById('grade').value = '';
    document.getElementById('designated').value = '';
    document.getElementById('municipalreg').value = '';
    document.getElementById('description').value = '';
    document.getElementById('ward').value = '';
}
