// JavaScript Document-Wes Website

//hilight border around pictures - aof,caricatures,editorial,contacts
function borderit(which,color){
  //if IE 4+ or NS 6+
  if (document.all||document.getElementById){
    which.style.borderColor=color}
}

function messg(which,color){
  //if IE 4+ or NS 6+
  if (document.all||document.getElementById){
    which.style.color=color}
}

