function show_flash(w, h, swf)
{
    document.write("<object type='application/x-shockwave-flash' data='"+swf+"' width='"+w+"' height='"+h+"'>");
    document.write("<param name='movie' value='"+swf+"' />");
    document.write("<param name='pluginurl' value='http://www.macromedia.com/go/getflashplayer' />");
    document.write("<param name='wmode' value='transparent' />");
    document.write("<param name='quality' value='best' />"); 
    document.write("<param name='scale' value='exactfit' />"); 
    document.write("</object>");
}


function show_video(w, h, url, start)
{
    if (start == 'false') ff_start = 0;
    else ff_start = 1;

    ext = url.substr(url.lastIndexOf(".") + 1, url.length);
    ext = ext.toLowerCase();

    if (ext == 'mov' || ext == 'qt')
    {
	document.write("<object id='QuickTime' classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' codebase='http://www.apple.com/qtactivex/qtplugin.cab' width='"+w+"' height='"+h+"'>");
	document.write("<param name='type' value='video/quicktime' />");
	document.write("<param name='autostart' value='"+start+"' />");
	document.write("<param name='src' value='"+url+"' />");
	document.write("<embed width='"+w+"' height='"+h+"' src='"+url+"' autostart='"+start+"' type='video/quicktime' pluginspage='http://www.apple.com/quicktime/download/'></embed>");
	document.write("</object>");
    }
    else if (ext == 'rm' || ext == 'ram')
    {
	document.write("<object id='RealPlayer' classid='clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA' width='"+w+"' height='"+h+"'>");
	document.write("<param name='autostart' value='"+start+"' />");
	document.write("<param name='src' value='"+url+"' />");
	document.write("<param name='controls' value='ImageWindow' />");
	document.write("<param name='console' value='video' />");
	document.write("<embed src='"+url+"' width='"+w+"' height='"+h+"' autostart='"+start+"' type='audio/x-pn-realaudio' controls='ImageWindow' console='video'></embed>");
	document.write("</object>");
    }
    else
    {			
	document.write("<object id='mediaPlayer' CLASSID='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' standby='Loading Microsoft Windows&reg; Media Player components...' type='application/x-oleobject' width='"+w+"' height='"+h+"' onMouseOver='document.mediaPlayer.showControls=true' onMouseOut='document.mediaPlayer.showControls=false'>");
	document.write("<param name='animationatStart' value='true'>");
	document.write("<param name='transparentatStart' value='true'>");
	document.write("<param name='autostart' value='"+start+"' />");

	document.write("<param name='showControls' value='false'>");
	document.write("<param name='src' value='"+url+"' />");
	document.write("<embed width='"+w+"' height='"+h+"' src='"+url+"' autostart='"+ff_start+"' controls='false' type='application/x-mplayer2'></embed>");
	document.write("</object>");
    }
}
