//flash("/flash/top.swf", "logoID", "800", "244")
function flash(filmato,ID,width,height){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" id="'+ID+'"   width="'+width+'" height="'+height+'"> ')
    document.write('    <param name="movie" value="'+filmato+'"> ')
    document.write('    <param name="menu" value="false"> ')
    document.write('    <param name="wmode" value="transparent"> ')
    document.write('    <param name="quality" value="high"> ')
    document.write('    <param name="swLiveConnect" value="true"> ')
    document.write('    <embed src="'+filmato+'" menu="false" quality="high" swLiveConnect="true" wmode="transparent"  width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> ')
    document.write('</object> ')
}
function flashNoTrasparent(filmato,ID,width,height){
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" id="'+ID+'"   width="'+width+'" height="'+height+'"> ')
    document.write('    <param name="movie" value="'+filmato+'"> ')
    document.write('    <param name="menu" value="false"> ')
    document.write('    <param name="quality" value="high"> ')
    document.write('    <param name="swLiveConnect" value="true"> ')
    document.write('    <embed src="'+filmato+'" menu="false" quality="high" swLiveConnect="true" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"> ')
    document.write('</object> ')
}
function video(video,width,height){
	document.write('<object id="MediaPlayer1" width="'+width+'" height="'+width+'" classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" type="application/x-oleobject">');
	document.write('  <param name="AutoRewind" value="False">');
	document.write('  <param name="Autostart" value="1">');
	document.write('  <param name="ShowControls" value="1">');
	document.write('  <param name="ShowStatusBar" value="1">');
	document.write('  <param name="ShowPositionControls" value="0">');
	document.write('  <param name="showdisplay" value="0">');
	document.write('  <param name="ControlType" value="0">');
	document.write('  <param name="FileName" value="'+video+'">');
	document.write('  <embed src="'+video+'" type="video/x-ms-asf-plugin" pluginspage="http://www.microsoft.com/windows/mediaplayer/download/default.asp" width="'+width+'" height="+height+" autostart="1" showcontrols="1" ShowPositionControls="0" showstatusbar="1" autorewind="0" showdisplay="0"></embed>');
	document.write('</object>');
}

