﻿function PlayFlashInPopup(flashFilePath, width, height) {
    var src = '/FlashPopup.aspx?filename=' + flashFilePath + '&flashwidth=' + width + '&flashheight=' + height;
    var winRef = window.open(src, "", "width=" + (width + 20) + ",height=" + (height + 20) + ",status=no,resizable=no");
    winRef.focus();    
}