//-----------------------------------------------------//

function cambiarcolor(celda, color){      
      celda.bgColor = color;
  }

//-----------------------------------------------------//

function fswapimage(objeto, imagen) {
  objeto.src = imagen;
}

//-----------------------------------------------------//

function goURL(direccion){
	location.href=direccion;
}

//-----------------------------------------------------//

function goURLW(direccion, nombre, ancho, alto){
	window.open(direccion,nombre,'toolbar=0, directories=0, location=0, menubar=0, scrollbars=0, resizable=1, width='+ ancho +', height='+ alto +', left=40, top=30');
}

//-----------------------------------------------------//
