function CreateWindowsMediaPlayerObj(f_pass, f_w, f_h, f_sec){
    htm="";
    //OBJECT TAG
    htm+="<object id='WMP' width='"+f_w+"' height='"+f_h+"' classid='CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95' type='application/x-oleobject'>\n";
    htm+="<param name='Filename' value='"+f_pass+"'>\n";
    htm+="<param name='loop' value='true'>\n";
    htm+="<param name='AutoStart' value='true'>\n";
    htm+="<param name='ShowControls' value='true'>\n";
    htm+="<param name='CurrentPosition' value='"+f_sec+"'>\n";
    //EMBED TAG
    htm+="<embed name='WMP' type='application/x-mplayer2' pluginspage='http://www.microsoft.com/Windows/MediaPlayer/'";
    htm+=" src='"+f_pass+"'";
    htm+=" width='"+f_w+"' height='"+f_h+"'";
    htm+=" loop='true'";
    htm+=" autostart='true'";
    htm+=" showcontrols='true'";
    htm+=" currentposition='"+f_sec+"'>\n";
    htm+="</embed>\n";
    htm+="</object>\n";
    document.write(htm);
}


function CreateFlashPlayerObj(f_pass, f_w, f_h){
    htm="";
    //OBJECT TAG
    htm+="<object id='FLP' width='"+f_w+"' height='"+f_h+"' classid='CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000' type='application/x-oleobject'>\n";
    htm+="<param name='movie' value='"+f_pass+"'>\n";
    htm+="<param name='quality' value='high'>\n";
    //EMBED TAG
    htm+="<embed name='FLP' type='application/x-shockwave-flash' pluginspage='http://www.macromedia.com/jp/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash'";
    htm+=" src='"+f_pass+"'";
    htm+=" width='"+f_w+"' height='"+f_h+"'";
    htm+=" quality='high'>\n";
    htm+="</embed>\n";
    htm+="</object>\n";
    document.write(htm);
}


function CreateQuickTimeObj(f_pass, f_w, f_h){
    htm="";
    //OBJECT TAG
    htm+="<object id='QTP' width='"+f_w+"' height='"+f_h+"' classid='CLSID:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab'>\n";
    htm+="<param name='src' value='"+f_pass+"'>\n";
    htm+="<param name='qtsrc' value='"+f_pass+"'>\n";
    htm+="<param name='autoplay' value='true'>\n";
    htm+="<param name='controller' value='false'>\n";
    //EMBED TAG
    htm+="<embed name='QTP' pluginspage='http://www.apple.com/jp/quicktime/download/'";
    htm+=" src='"+f_pass+"'";
    htm+=" qtsrc='"+f_pass+"'";
    htm+=" width='"+f_w+"' height='"+f_h+"'";
    htm+=" autoplay='true'";
    htm+=" controller='false'>\n";
    htm+="</embed>\n";
    htm+="</object>\n";
    document.write(htm);
}
