
function colorize_sex(id){

	try {
	
		var minp = document.getElementById(id+'m');
		var mtext = document.getElementById(id+'mc');
		var finp = document.getElementById(id+'f');
		var ftext = document.getElementById(id+'fc');

		if (minp.checked == true){
			mtext.style.color = '#0000ff';
			mtext.style.fontSize = '12px';
			mtext.style.fontWeight = 'bold';
			ftext.style.color = '#000066';
			ftext.style.fontSize = '12px';
			ftext.style.fontWeight = 'normal';
		}else{
			ftext.style.color = '#0000ff';
			ftext.style.fontSize = '12px';
			ftext.style.fontWeight = 'bold';
			mtext.style.color = '#000066';
			mtext.style.fontSize = '12px';
			mtext.style.fontWeight = 'normal';
		}
	}
	
	finally{}
}