  function highlight_option(m,n) {
  
  	   j=0;
	   while (document.getElementById('opt_row_'+j) != null) {
	        option_value_field = document.getElementById('opt_row_'+j);
			option_value_field.className = 'no_highlight';
			j++;
		}
		
	   if (j>1) { 
	        option_value_field = document.getElementById('opt_row_'+m);
	        option_value_field.className = 'highlight'; 
	    }

	   
	   j=0;
	   while (document.getElementById('opt_col_'+j) != null ) {
	        option_value_field = document.getElementById('opt_col_'+j);
			option_value_field.className = 'no_highlight';
			j++;
		}
		
	    if (j>1) { 
		     option_value_field = document.getElementById('opt_col_'+n);
	         option_value_field.className = 'highlight'; 
	    }  
		
    }
	
	


  function clear_highlight() {

   	   j=0;
	   while (document.getElementById('opt_row_'+j) != null ) {
	        option_value_field = document.getElementById('opt_row_'+j);
			option_value_field.className = 'no_highlight';
			j++;
		}

	   j=0;
	   while (document.getElementById('opt_col_'+j) != null ) {
	        option_value_field = document.getElementById('opt_col_'+j);
			option_value_field.className = 'no_highlight';
			j++;
		}

   }		
