var altezza;

if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    altezza = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    altezza = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    altezza = document.body.clientHeight;
}

if (altezza <= 604) {
        
    document.getElementById("move").style.marginTop = "20px";
    document.getElementById("move").style.marginBottom = "20px";
    
}
else {
    
    var margine = altezza - 604;
    margine = (margine/2);
    margine = margine+"px";
    document.getElementById("move").style.marginTop = margine;

}