// JavaScript Document
function apriswf(nomefile,larghezza,altezza,trasparenza) {
      document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http:download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+larghezza+"' height='"+altezza+"'>\n");
      document.write("<param name='movie' value='"+nomefile+"' />\n");
      document.write("<param name='quality' value='high' />\n");
      document.write("<param name='wmode' value='"+trasparenza+"' />\n");
      document.write("<embed src='"+nomefile+"' quality='high' wmode='"+trasparenza+"' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+larghezza+"' height='"+altezza+"'></embed>\n");
      document.write("</object>\n");
}

function apriswfVar(nomefile,larghezza,altezza,trasparenza,variabile) {
	  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http:download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+larghezza+"' height='"+altezza+"'>\n");
      document.write("<param name='movie' value='"+nomefile+"' />\n");
      document.write("<param name='quality' value='high' />\n");
      document.write("<param name='wmode' value='"+trasparenza+"' />\n");
	  document.write("<param name='FlashVars' value='flashVarText="+variabile+"' />\n");
      document.write("<embed src='"+nomefile+"' quality='high' wmode='"+trasparenza+"' FlashVars='flashVarText="+variabile+"' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+larghezza+"' height='"+altezza+"'></embed>\n");
          document.write("</object>\n");
}

function apriswfVar2(nomefile,larghezza,altezza,trasparenza,var1,var2) {
	  document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http:download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0' width='"+larghezza+"' height='"+altezza+"'>\n");
      document.write("<param name='movie' value='"+nomefile+"' />\n");
      document.write("<param name='quality' value='high' />\n");
      document.write("<param name='wmode' value='"+trasparenza+"' />\n");
	  document.write("<param name='FlashVars' value='flashVarText="+var1+"&pathImg="+var2+"' />\n");
      document.write("<embed src='"+nomefile+"' quality='high' wmode='"+trasparenza+"' FlashVars='flashVarText="+var1+"&pathImg="+var2+"' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+larghezza+"' height='"+altezza+"'></embed>\n");
          document.write("</object>\n");
}
function aprivideo(nomefile,larghezza,altezza) {
      document.write("<object classid='clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B' width='"+larghezza+"' height='"+altezza+"' codebase='http://www.apple.com/qtactivex/qtplugin.cab'/>\n");
      document.write("<param name='src' value='"+nomefile+"' />\n");
      document.write("<param name='autoplay' value='true' />\n");
      document.write("<param name='controller' value='true'/>\n");
      document.write("<param name='loop' value='true'/>\n");
      document.write("<embed src='"+nomefile+"' width='"+larghezza+"' height='"+altezza+"' autoplay='true' controller='true' loop='true' pluginspage='http://www.apple.com/quicktime/download/'/></embed>\n");
      document.write("</object>\n");
}
