function openMedia(link,w,h) {
    w = eval(w);
    if (w <= 0) w = 600;
    h = eval(h);
    if (h <= 0) h = 500;
    return displayWindow(link, w, h);
}

function closeMedia()
{
    // no need to do anything here since it's now a lightbox
}

