

//-----------------------------------------------------------------------------
// this file contains scripts for general use throughout the site
//--------------------------------

function underline(a){
a.style.textDecoration='underline';
}
function noline(a){
a.style.textDecoration='none';
}

