popup_timer_tracker = new Array();
function hide_popup( id ) {
    popup_timer_tracker[ id ] = setTimeout( "$('#" + id + "').hide()", 100 );
}

function show_popup( id ) {
    if( popup_timer_tracker[ id ] )
        clearTimeout( popup_timer_tracker[ id ] );

    $( '#' + id ).show();
}

