// GridView JavaScript functions
function __doPostBack(parentForm, eventTarget, eventArgument) {
	var theForm = document.forms[parentForm];
	if (!theForm) {
	    theForm = document.getElementById(parentForm);
	}

    if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
		theForm.__EVENTTARGET.value = eventTarget;
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}
