var satellite = new Object;

function open_me(what, x,y) {
    if (satellite.closed || !satellite.open) {
        satellite = window.open(what, 'satellite', 'width=' + (x + 5) + ',height=' + (y + 5) + ',status=no,location=no,resizable=no,scrollbars=yes');
    }
    else {
        satellite.focus();
        satellite.location.href = what;
    }
    
}
