//this is link color changer and empahsizer changing the color of mousedover link
//this also will allow the link to be italizied or changed back to normal
//link- variable to hold this pointer so the style of the object can be accessed
//color- the color value the link should be
//style- the style of the link. values=italic|normal
//Created 11/30/00 Kenneth Fly

function changelinkstyle(link,color,style){
  link.style.color=color;
  link.style.fontStyle=style;
}
