Dovrebbe bastare:
nella pagina pagina0.html ti ritrovi un parametro "value", passato via get, che contiene i valori checkati.Codice PHP:
function Controllo(f)
{
var ckIndex = -1;
var parametro = "";
for (var i=0; i<3; i++)
{
var b = document.getElementById("ck"+i).checked;
if (b)
{
ckIndex = i;
parametro += i + " ",
}
}
if (ckIndex>=0)
document.form1.action="pagina0.html?value="+parametro;
else
document.form1.action="pagina1.html";
}