function borderBorder(me,fColor,borColor){
  me.style.color = fColor;
  me.style.border='solid 1px ' + borColor;
}
function colorColor(me, fColor, bColor){
   me.style.color=fColor;
   me.style.background=bColor;
}
function colorColor1(me, bColor){
   me.style.background=bColor;
}
function changeBig(me, theBig){
	document.getElementById(theBig).src = me.src;
}
function changeUnloaded(theImg)
 {
	 alert(theImg.Complete);
 	if (theImg.Complete == false)
 	{
		theImg.style.src = "thefiles/noavatar2.gif";
 	}
 }

