function MailForm(nick)
{
    Mailer = window.open("/mail.php?nick="+nick, "Mailer","toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=600,height=500,left=150,top=100,screenX=150,screenY=100");
    if (Mailer)
    {
        Mailer.focus();
    }
}

function rko(arrangerid)
{
    window.open("http://remix.kwed.org/arrangermail.php?arrangerid="+arrangerid, "arrangermail", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=300,height=500,left=50,top=50,screenX=50,screenY=50");
}

function vote(id)
{
    window.open("/box.php?local=1&id="+id, "votebox", "toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=460,height=500,left=450,top=300,screenX=450,screenY=300");
}

function open_r64(suburl)
{
    var w=window.open("http://www.remix64.com/"+suburl, "remix64_main", "toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,directories=yes,resizable=yes,width=800,height=600,left=50,top=50,screenX=50,screenY=50");
    w.focus();
}

// Info Popup

var feed_info_box_is_visible = false;
var feed_info_box_last_sender = '';
var feed_info_box_mousepos;
var feed_info_timer;

function info_show(e, sender_id)
{
    var inf = document.getElementById('feed_info_box');
    
    /* Create info box */
    if (!inf) {
        inf = document.createElement('div');
        inf.id = 'feed_info_box';
        document.body.appendChild(inf);
    }
    
    /* Fill and show info box */

    if(sender_id != feed_info_box_last_sender) {
        inf.innerHTML = document.getElementById(sender_id + '_contents').innerHTML;
    }
    feed_info_box_mousepos = get_mouse_position(e);
 
    if(!feed_info_box_is_visible) {
        elem_fade_cancel();
        inf.style.opacity = 1;
        feed_info_timer = setTimeout('info_show_now();', 500);
    } else {
        clearTimeout(feed_info_timer);
        info_show_now();
    }

    feed_info_box_last_sender=sender_id;
}

/**
 * Show and move info box
 */

function info_show_now()
{
    var inf = document.getElementById('feed_info_box');
    if (inf) {
        inf.style.opacity = 1;
        inf.style.display = 'block';
        inf.style.left = (feed_info_box_mousepos.x + 16) + 'px';
        inf.style.top = (feed_info_box_mousepos.y + 16) + 'px'; 
        feed_info_box_is_visible=true;
    }
}

function info_hide()
{
    if(feed_info_box_is_visible) {
        feed_info_timer = setTimeout('info_hide_now();',200);
    } else {
        clearTimeout(feed_info_timer);
    }
}

function info_hide_now()
{
    feed_info_box_is_visible=false;
    elem_fadeout('feed_info_box');
}



