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