function FutronicaSwf(file, widthx, heighty, version)

{

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + version + ',0,0,0" ');
document.write('width="' + widthx + '" height="' + heighty + '"><param name=movie value="' + file + '"><param name=quality value=high> ');
document.write('<embed src="' + file + '" quality=high ');
document.write('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ');
document.write('type="application/x-shockwave-flash" width="' + widthx + '" height="' + heighty + '">');
document.write('</embed></object>');


}


function FutronicaVideo(file, widthx, heighty) 

{

document.write('<object width="' + widthx + '" height="' + heighty + '">');
document.write('<param name="movie" value="' + file + '">');
document.write('<param name="wmode" value="transparent">');
document.write('<embed src="' + file + '" wmode="transparent" type="application/x-shockwave-flash" width="' + widthx + '" height="' + heighty + '">');
document.write('</embed></object>');

}


function FutronicaMP4(file, widthx, heighty) 

{

document.write('<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
document.write('CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"WIDTH="' + widthx + '" HEIGHT="' + heighty + '" >');
document.write('<PARAM NAME="src" VALUE="' + file + '" >');
document.write('<PARAM NAME="autoplay" VALUE="true" >');
document.write('<EMBED  SRC="' + file + '" PLUGINSPAGE="http://www.apple.com/quicktime/download"WIDTH="' + widthx + '" HEIGHT="' + heighty + '" AUTOPLAY="true" >');
document.write('</EMBED></OBJECT>');

}


