function openPopup(src, width, height)
{
    popup = window.open(src, 'popupFlash', 'height='+height+', \
                        width='+width+', location="no", menubar="no", \
                        directories="no", toolbar="no", status="yes", \
                        resizable="yes", scrollbars="yes"');
    popup.focus();
}

function openFullPopup(src, width, height)
{
    popup = window.open(src, 'popupFlash', 'height='+height+', \
                        width='+width+', location="no", menubar="no", \
                        directories="no", toolbar="no", status="yes", \
                        resizable="yes", scrollbars="yes", fullscreen="yes"');
    popup.focus();
}
