//postElsewhere reformats ASP.NET control names and posts the data to another page
function postElsewhere(sNewFormAction)
{
    document.forms[0].action = sNewFormAction;
    document.forms[0].__VIEWSTATE.value = '';
    document.forms[0].submit();
}
