﻿function NBSubmit(arg)
{
    var thisForm = document.getElementById('aspnetForm');
    
    if(thisForm != null)
    {
        thisForm.action = arg;
        thisForm.submit();
    }
    return false;
}

