var theform = document.forms['form1'];
if (!theform) {
theform = document.form1;
}
function __doPostBack(eventTarget, eventArgument) {
theform.__EVENTTARGET.value = eventTarget.split("$").join(":");
theform.__EVENTARGUMENT.value = eventArgument;
theform.submit();
}