<!--
  function putFlashPlayer(flvName,w,h,autoPlay,allowFullScreen,embed,playerLocation,imageFile) {
    var out='';
    var flashVars='';
    
    if(embed)
      playerLocation='http://www.julienews.it/';
    
    out+='<object id="objNxSVFPlayer'+((embed)?'Embedded':'')+'" name="objNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                 'classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
                 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v..." '+
                 'width="'+w+'" '+
                 'height="'+h+'">'+"\n";
    out+='<param name="movie" value="'+playerLocation+'nxplayer.swf" />'+"\n";
    out+='<param name="quality" value="high" />'+"\n";
    out+='<param name="wmode" value="transparent" />'+"\n";
    out+='<param name="allowFullScreen" value="'+((allowFullScreen)?'true':'false')+'" />'+"\n";
    out+='<param name="salign" value="lt" />'+"\n";
    out+='<param name="scale" value="noscale" />'+"\n";
    if(embed)
      flashVars='file='+flvName+'.flv'+((autoPlay)?'&autostart=true':'');
    else
      flashVars='file='+(flvName.substring(flvName.lastIndexOf('/')+1))+'.flv&width='+w+'&height='+h+((autoPlay)?'&autostart=true':((imageFile!='')?'&autostart=false&image='+imageFile:''))+'&streamscript=seeker.php&streamscript2='+flvName+'.flv';
    out+='<param name="FlashVars" value="'+flashVars+'" />'+"\n";
    out+='<embed src="'+playerLocation+'nxplayer.swf" '+
                'id="embedNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                'name="embedNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                'flashvars="'+flashVars+'" '+
                'quality="high" '+
                'wmode="transparent" '+
                'scale="noscale" '+
                'allowfullscreen="'+((allowFullScreen)?'true':'false')+'" '+
                'width="'+w+'" '+
                'height="'+h+'" '+
                'salign="LT" '+
                'type="application/x-shockwave-flash" '+
                'pluginspage="http://www.macromedia.com/go/getflashplayer" />'+"\n";
    out+='</object>'+"\n";
    return out;
  } // End of putFlashPlayer() function

  function putFlashListPlayer(playListName,w,h,autoPlay,allowFullScreen,embed,playerLocation) {
    var out='';
    var flashVars='';
    
    if(embed)
      playerLocation='http://www.julienews.it/';
    
    out+='<object id="objNxSVFPlayer'+((embed)?'Embedded':'')+'" name="objNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                 'classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
                 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#v..." '+
                 'width="'+w+'" '+
                 'height="'+h+'">'+"\n";
    out+='<param name="movie" value="'+playerLocation+'nxplayer2.swf" />'+"\n";
    out+='<param name="quality" value="high" />'+"\n";
    out+='<param name="wmode" value="transparent" />'+"\n";
    out+='<param name="allowFullScreen" value="'+((allowFullScreen)?'true':'false')+'" />'+"\n";
    out+='<param name="salign" value="lt" />'+"\n";
    out+='<param name="scale" value="noscale" />'+"\n";
    if(embed)
      flashVars='file='+playListName+'&item=0&shuffle=false'+((autoPlay)?'&autostart=true':'')+'&repeat=list';
    else
      flashVars='file='+playListName+'&item=0&shuffle=false&width='+w+'&height='+h+((autoPlay)?'&autostart=true':'&autostart=false')+'&repeat=list&streamscript=seeker.php';
    out+='<param name="FlashVars" value="'+flashVars+'" />'+"\n";
    out+='<embed src="'+playerLocation+'nxplayer2.swf" '+
                'id="embedNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                'name="embedNxSVFPlayer'+((embed)?'Embedded':'')+'" '+
                'flashvars="'+flashVars+'" '+
                'quality="high" '+
                'wmode="transparent" '+
                'scale="noscale" '+
                'allowfullscreen="'+((allowFullScreen)?'true':'false')+'" '+
                'width="'+w+'" '+
                'height="'+h+'" '+
                'salign="LT" '+
                'type="application/x-shockwave-flash" '+
                'pluginspage="http://www.macromedia.com/go/getflashplayer" />'+"\n";
    out+='</object>'+"\n";
    return out;
  } // End of putFlashListPlayer() function
-->

