
// modID : ID of the element u wish to update
// onoff : none = underline... underline = de-underline

function ulme(modID, onoff){
	if( onoff=='on' ){
		ulmecol = '#00F' ;
		ulmeund = 'underline' ;
	} else {
		ulmecol = '#341086' ;
		ulmeund = 'none' ;
	}
	document.getElementById(modID).style.textDecoration = ulmeund ;
	document.getElementById(modID).style.color = ulmecol ;
}