
function intro_flash() {
  if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'WIDTH="780" HEIGHT="480"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="MOVIE" VALUE="comp/swf/sito_in_blu2.swf">'
    + '<param name="PLAY" VALUE="true">'
    + '<param name="LOOP" VALUE="false">'
    + '<param name="QUALITY" VALUE="high">'
    + '<param name="MENU" VALUE="false">'
    + '<param name=bgcolor value="#47494e">'
    + '<param name=scale value=border>'
    + '<EMBED SRC="comp/swf/sito_in_blu2.swf"'
    + 'WIDTH="780" HEIGHT="480"'
    + 'PLAY="true"'
    + 'LOOP="false"'
    + 'QUALITY="high"'
    + 'MENU="false"'
    
    + 'TYPE="application/x-shockwave-flash"'
    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '<\/EMBED>'
    + '<\/OBJECT>';

    document.write(oeTags);   // embed the flash movie
  } 
    else { 
    var alternateContent = '<img src="images/intro.jpg" alt="" width="895" height="400" border="0"/> <br>';
    document.write(alternateContent); 
  }
  }
      
}


function index_flash() {
  if (!useRedirect) {    // if dynamic embedding is turned on
  if(hasRightVersion) {  // if we've detected an acceptable version
    var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'WIDTH="780" HEIGHT="480"'
    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="MOVIE" VALUE="comp/swf/sito_in_blu.swf">'
    + '<param name="PLAY" VALUE="true">'
    + '<param name="LOOP" VALUE="false">'
    + '<param name="QUALITY" VALUE="high">'
    + '<param name="MENU" VALUE="false">'
    + '<param name=bgcolor value="#47497e">'
    + '<param name=scale value=border>'
    + '<EMBED SRC="comp/swf/sito_in_blu.swf"'
    + 'WIDTH="780" HEIGHT="480"'
    + 'PLAY="true"'
    + 'LOOP="false"'
    + 'QUALITY="high"'
    + 'MENU="false"'
    
    + 'TYPE="application/x-shockwave-flash"'
    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
    + '<\/EMBED>'
    + '<\/OBJECT>';

    document.write(oeTags);   // embed the flash movie
  } 
    else { 
    var alternateContent = '<img src="images/intro.jpg" alt="" width="895" height="400" border="0"/> <br>';
    document.write(alternateContent); 
  }
  }
      
}