function changecolor(mobile) {
	var movil;
	var fondo;
	var boton;

	movil = mobile;

	if( document.getElementById ) {
		fondo = document.getElementById( 'caja_color' );
		boton = document.getElementById( 'bt_link' );
	} else if( document.all ) {
		fondo = document.all[ 'caja_color' ];
		boton = document.all[ 'bt_link' ];
	}

	if( !fondo && !boton ) {
		/* The page has not loaded, or the browser claims to
		support document.getElementById or document.all but
		cannot actually use either */
		return;
	}

	if (movil == 'naranja') {
		fondo.style.background = '#ffc20e';
		boton.style.display = 'block';
		boton.href = 'http://tienda.vodafone.es/movil/vodafone/527_naranja/';
		boton.className = 'textBtnRainOrange';
		boton.innerHTML = '<span>El naranja es mi color</span>'
	}
	else if (movil == 'rosa') {
		fondo.style.background = '#ef5ba1';
		boton.style.display = 'block';
		boton.href = 'http://tienda.vodafone.es/movil/vodafone/527_rosa/'; 
		boton.className = 'textBtnRainPink';
		boton.innerHTML = '<span>El rosa es mi color</span>' 
	}
	else if (movil == 'rojo') {
		fondo.style.background = '#ed1c24';
		boton.style.display = 'block';
		boton.href = 'http://tienda.vodafone.es/movil/vodafone/527_rojo/'; 
		boton.className = 'textBtnRainRed';
		boton.innerHTML = '<span>El rojo es mi color</span>' 
	}
	else if (movil == 'verde') {
		fondo.style.background = '#99ca3c';
		boton.style.display = 'block';
		boton.href = 'http://tienda.vodafone.es/movil/vodafone/527_verde/'; 
		boton.className = 'textBtnRainGreen';
		boton.innerHTML = '<span>El verde es mi color</span>' 
	}
	else if (movil == 'azul') {
		fondo.style.background = '#00a0e4';
		boton.href = 'http://tienda.vodafone.es/movil/vodafone/527_azul/'; 
		boton.style.display = 'block';
		boton.className = 'textBtnRainBlue';
		boton.innerHTML = '<span>El azul es mi color</span>'  
	};
}

