// JavaScript Document
function cambio_imagen($id, $ruta){
	$imagen = document.getElementById($id);
	$imagen.src = $ruta;
}
