﻿function redirectToPage(destination)
{
    setTimeout(location.href = destination, 3000);
}

function setNullText(field)
{
    field.value = "";
}
function setText(field, text)
{
    if(field.value == "" || field.value == null) 
        field.value = text;
}
