<script>
<!--
var click=0;
var time=0;
function fullscr() {
if (time==getMinutes()+' '+getSeconds()) {
click++;
if (click>1) {
if (!DVD.FullScreenMode) {
DVD.FullScreenMode="true";
} else {
DVD.FullScreenMode="false";
}
}
} else {
click=0;
time=getMinutes()+' '+getSeconds();
fullscr();
}
}
//-->
</script>

<input type="button" onclick="fullscr()" value="full Screen">

PS:non sono sicuro che funzioni.... fammi sapere

PS2: onclick="fullscr()" mettilo anche nell'object DVD

-Die-