//for the EworxTabControl
function Tab_Over() { 
} 

//for the EworxTabControl
function Tab_Out() { 
}

//used for errors in Atlas calls
function Error(result) {
    if (result != null) {
        try {    
            alert("An unexpected error has occurred: " + result.get_message());
        }
        catch(e) {
        }
    }
}

//gets an element on the document
function GetElement(id) {
    if (!document.getElementById(id)) 
        alert("Object '" + id + "' does not exist on this document.");
    return document.getElementById(id);
}

function Step3() {
    GetValues();
    __doPostBack('','');
}