function font1(link){
if (document.all){
link.style.color = "#ff0000";
link.style.textDecoration = "underline";
}
}

function font2(link){
if (document.all){
link.style.color = "#0000ff";
link.style.textDecoration = "none";
}
}
