//Copyright (c) 2008 Anent Software, L.L.C.


function PopWindow(page_to_open,strname) 
{
window.open(page_to_open,strname,'resizable,scrollbars,width=790,height=510,screenX=0,screenY=15,left=0,top=15').focus();
}

function getControl(DOM_ID) {
    if (document.getElementById) {
        // this is the way the standards work
        return document.getElementById(DOM_ID);
    }
    else if (document.all) {
        // this is the way old msie versions work
        return document.all[DOM_ID];
    }
    else if (document.layers) {
        // this is the way nn4 works
        return document.layers[DOM_ID];
    }
}









