﻿
function EnableRegistrationButton(button, checkbox)
{   
    if (checkbox.checked)
    {
        button.disabled = false;
    }
    else
    {
        button.disabled = true;
    }
}

function Mover(ancho,alto){
    window.scroll(ancho,alto);
}




