/**
 * オブジェクトタグを作成
 *
 * <code>
 * <object width="420" height="380">
 * <param value="http://clipcast.jp/player/player.swf?id=000100000003895&v=blog2" name="movie"/>
 * <param name="allowScriptAccess" value="always"/>
 * <param name="allowFullScreen" value="true"/>
 * <embed width="420" height="380" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" src="http://clipcast.jp/player/player.swf?id=000100000003895&v=blog2"/>
 * </object>
 * </code>
 */
function setObjectTag(url, width, height)
{
    var tag = '';
    tag+='<object width="'+width+'" height="'+height+'">';
    tag+='<param value="'+url+'" name="movie"/>';
    tag+='<param name="allowScriptAccess" value="always"/>';
    tag+='<param name="allowFullScreen" value="true"/>';
    tag+='<embed width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" allowScriptAccess="always" allowFullScreen="true" src="'+url+'"/>';
    tag+='</object>';

    return tag;
}
