﻿function selectViewChanged(control) {
    //show processing bar
    location = control.options[control.selectedIndex].value;
}

function fPopModal(url, w, h) {
    var lPos = (screen.width) ? (screen.width - w) / 2 : 0;
    var tPos = (screen.height) ? (screen.height - h) / 2 : 0;
    var retv = window.showModalDialog(url + "&temp=" + Math.random(), window, "status:no;resizable:no;scroll:no; help:no;dialogTop:" + tPos + "px;dialogLeft:" + lPos + "px; dialogWidth:" + w + "px; dialogHeight:" + h + "px;");
    return retv;
}
function fPopModal_Obj(url, w, h, obj) {
    var lPos = (screen.width) ? (screen.width - w) / 2 : 0;
    var tPos = (screen.height) ? (screen.height - h) / 2 : 0;
    var retv = window.showModalDialog(url + "&temp=" + Math.random(), obj, "status:no;resizable:no;scroll:no; help:no;dialogTop:" + tPos + "px;dialogLeft:" + lPos + "px; dialogWidth:" + w + "px; dialogHeight:" + h + "px;");
    return retv;
}
