Hai la possibilità di settare lo stato del suono con un cookie
Introduco i passi.

(1) ad ogni avvio della pagina setti il movie con lo stato del suono nel cookie

(2) il movie a seconda dello stato fa sentire o no il suono

(3) se si toglie o si rimette il suono si deve anche modificare lo stato del suono nel cookie

Esplicito i passi

1))---------------------------------------------------------
<head>
<script /><!--



// SETTAGGIO PARAMETRI MOVIE
// !!! FUNZIONA SOLO CON IE
function p_set_movie(movie_id, m_variable, m_value){
if(document.layers){
// CASO NN
window.document.embeds[movie_id].SetVariable(m_variable, m_value);
} else {
// CASO IE
var this_movie = document.getElementById(movie_id);
this_movie.SetVariable(m_variable, m_value);
}
}





// COOKIE: ACQUISIZIONE VALORI
function getSSCookie(name) {
var search = "SIGEC." + name + "=";
var retstr = "";
var offset = 0;
var end = 0;
if (document.cookie.length > 0) {
offset = document.cookie.indexOf(search);
if (offset != -1) {
offset += search.length;
end = document.cookie.indexOf(";", offset);
if (end == -1)
end = document.cookie.length;
retstr = unescape(document.cookie.substring(offset, end));
}
}
return(retstr)
}




//COOKIE SETTAGGIO VALORI
function setSSCookie (name, value) {
// 32 days of during
var expire = new Date();
expire.setDate(expire.getDate() + 32);
//
document.cookie =
"SIGEC." + name + "="
+ escape(value)
+ ((expire == null) ? "" : ("; expires=" + expire.toGMTString()));
}


//--></script>
</head>