function openVideo(aVideoPath, aWidth, aHeight){
    window.open("/DesktopModules/sfFlashEmbed/FlashPopup.aspx?videoPath=" + aVideoPath + "&width=" + aWidth + "&height=" + aHeight, "popup", "width=" + aWidth + ",height=" + aHeight);
}

function openImage(aUrl, aWidth, aHeight){
    aWidth += 20;
    aHeight += 20;
    window.open(aUrl, "popup", "width=" + aWidth + ",height=" + aHeight);
}

function openAudio(aUrl, aWidth, aHeight){
    window.open(aUrl, "popup", "width=" + aWidth + ",height=" + aHeight);
}