function flash(path,width,height,color,boolloop){
 document.write('<object type="application/x-shockwave-flash" data="'+path+'" width="'+width+'" height="'+height+'"><param name="movie" value="'+path+'" /><param name="quality" value="BEST" /><param name="MENU" value="FALSE"><param name="loop" value="'+boolloop+'"><param name="bgcolor" value="'+color+'"></object>');
}

function scorrimento(marqueewidth,marqueeheight,speed,marqueecontents){
 if (document.all){
  document.write('<marquee direction="up" scrollAmount="'+speed+'" style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')}
 else if(document.layers){
  document.write('<ilayer id="cmarquee01" width="'+marqueewidth+'" height="'+marqueeheight+'"><layer id="cmarquee02" width="'+marqueewidth+'" height="'+marqueeheight+'"></layer></ilayer>')}
}