/**
 *
 * @access public
 * @return void 
 **/
function open_interpret_key(url, title)
{
    var dependent   = 'yes';
    var menubar     = 'no';
    var resizable   = 'no';
    var scrollbars  = 'yes';
    var status      = 'no';
    var toolbar     = 'no';
    var width       = '810';
    var height      = '800';
    
    interpret_key = window.open(url, title, 'height=' + height + ',' +
                                            'width=' + width + ',' +
                                            'menubar=' + menubar + ',' +
                                            'resizable=' + resizable + ',' +
                                            'scrollbars=' + scrollbars + ',' +
                                            'status=' + status + ',' +
                                            'toolbar=' + toolbar
                                );
    interpret_key.focus();
}
