﻿var refr3 = 0;
function refr2() {
    if (refr3 >= 60) {
        window.location = location.href;
    }
    else {
        refr3 = refr3 + 1;
    }
    setTimeout("refr2()", 3000);
}
refr2();
