/*
 * swf.js
 *
 * Copyright (c) 2010 Single Bind
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Since:     2010-05-24
 *
 * jQuery 1.3.1
 */

function swf(settings) {

    var val  = '<object data="' + settings.swf + '" type="application/x-shockwave-flash" width="' + settings.width + '" height="' + settings.height + '">';
        val += '<param name="movie" value="' + settings.swf + '" />';
        val += '<h2>Flashプラグインの使用について</h2>';
        val += '<p>当ウェブサイトをご利用いただくにあたり、Flashプラグインをインストールしていただくことを推奨しております。</p>';
        val += '</object>';
    $(settings.selector).html(val);
}
