<!--
// JavaScript Document

function changebg(obj, new_color) {
	obj.style.backgroundColor=new_color;
}

function randomNumber(limit){
	  return Math.floor(Math.random()*limit);
}
	
function changebg_image(obj, new_background) {
  obj.style.backgroundImage=new_background;
}

function changacolor(obj, new_color) {
	obj.style.color=new_color;
}


function fn_SwitchLink(linkthis, currentImage, light, popup)
{  
  if(light)
  {
    newcolor = '#ff0000';
	currentImage.src="../images/letterco1.gif";
  }	
  else
  {
    newcolor = '#444444';
	currentImage.src="../images/letterco.gif";
  }
  	
  linkthis.style.color=newcolor;  
  linkthis.title=popup;   
}
//-->

