function RunIndex(nome, altezza, larghezza)
{
/*document.write(altezza);
document.write(larghezza);	
document.write(nome);*/

	  document.write("<object classid=\"clsid:D27CDB6E-AE6D-11CF-96B8-444553540000\" id=\"obj1\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\" border=\"0\" width=\"");
	  document.write(larghezza);
	  document.write("\" height=\"");
	  document.write(altezza);
	  document.write("\">\n");
	  document.write("<param name=\"wmode\" value=\"transparent\">\n");
	  document.write("<param name=\"bgcolor\" value=\"#00ffff\">\n");
    document.write("<param name=\"movie\" value=\"");
    document.write(nome);
    document.write("\">\n");
    document.write("<param name=\"quality\" value=\"High\">\n");
    document.write("<embed src=\"");
    document.write(nome);
 //document.write("\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  width=\"800\" height=\"900\">");
 
 if ((altezza>0)&&(larghezza>0))
 {
	 document.write("\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  width=\"");
	 document.write(larghezza);
	 document.write("\" height=\"");
	 document.write(altezza);
	 document.write("\" bgcolor=\"#00ffff\" wmode=\"transparent\">");
	}
 else if ((altezza<=0)&&(larghezza>0))
 {
	 document.write("\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  width=\"");
	 document.write(larghezza);
	 document.write("\" bgcolor=\"#00ffff\" wmode=\"transparent\">");
	}	    
 else if ((altezza>0)&&(larghezza<=0))
 {
	 document.write("\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\"  height=\"");
	 document.write(altezza);
	 document.write("\" bgcolor=\"#00ffff\" wmode=\"transparent\">");
	}	    
	 else if ((altezza<=0)&&(larghezza<=0))
 {
	 document.write("\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" bgcolor=\"#00ffff\" wmode=\"transparent\">");
	}
	
	document.write("</object>\n");
}

