﻿//
function getId(ctrlId, prefix) {
    if (prefix) {
        return prefix + 'ctl00_MainContent_' + ctrlId;
    }
    else {
        return 'ctl00_MainContent_' + ctrlId;
    }
}

function previousPage() {
    window.history.go(-1);
}
