﻿function firstFieldFocus() {
    for(var i=0; i<document.forms[1].elements.length; i++) {
        if(document.forms[1].elements[i].type == 'text' ||
           document.forms[1].elements[i].type == 'select-one') {
            document.forms[1].elements[i].focus();
            return;
        }
    }
}

function WebForm_DoPostBackWithOptions() {}
function WebForm_PostBackOptions() {}
