flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="1004" height="259"><param name="movie" value="images/header.swf"><param name="quality" value="high"><embed src="images/header.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="1004" height="259"></embed></object>';


function openModal(link) {
    if (document.getElementById('flash')) {
        document.getElementById('flash').innerHTML='<img alt="" src="/images/flash.jpg" />';
    }
    $("#modal").load(link.href).modal({
        containerCss: {
            height: 500,
            width: 500
        },
        onClose: function(dialog) {
            if (document.getElementById('flash')) {
                document.getElementById('flash').innerHTML=flash;
            }
            $.modal.close();
            $("#modal").hide();
        }

    });
}


