﻿function openFlash(strUrl, strName, strWidth, strHeight)
{
    var windowAttributes = 'menubar=no,resizable,scrollbars,height=' + strHeight + ',width=' + strWidth;
    var newWindow = window.open(strUrl, strName, windowAttributes);
    newWindow.focus();
}
