function go(form, x)
{
    location.href = x;
    if (form) {
        form.reset();
        form.elements[0].blur();
    }
}
