﻿function OnButtonClick(e) {
    var targ;
    if (e.target) targ = e.target;
    else if (e.srcElement) targ = e.srcElement;

    if (targ.type != 'submit') {
        if (!targ.childNodes[0].childNodes[0]) {
            targ.childNodes[0].click();
        }
        else {
            !targ.childNodes[0].childNodes[0].click();
        }
    }
}