﻿// XLink.vb: This is a helper function for onclick events.
function xlinkPostBack(eventTarget, eventArgument, action)
{
    theForm.action = action;
    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
        theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}

