//solo nell'index

function ObjectLoad()
{
    if (objectSource)
    {
        objectDestination.outerHTML = "<embed width='900px' height='450px' fullscreen=yes src=\"" + objectSource + "\" />";
    }
}

//solo nella home
function ObjectLoad2()
{
   if (objectSource)
    {
        objectDestination.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + objectSource + "\" />";
     //   centro.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + central + "\" />";
        coda.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + tail + "\" />";
   }
}

function ObjectLoad3()
{
   if (objectSource)
    {
       objectDestination.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + objectSource + "\" />";
        centro.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + central + "\" />";
        coda.outerHTML = "<embed width='900px' height='150px' fullscreen=yes src=\"" + tail + "\" />";
   }
}

//funzione cambia colore script
function colore(gamma) 
{
var corpo=document.getElementById(gamma);
    corpo.style.color='#d8160c';

}

function grigio(gamma) {
var corpo=document.getElementById(gamma);
    corpo.style.color='#808080';
}

