// JavaScript Document

function FLA_Lev0(){
var winX = screen.width; 
//var winY = screen.height;
//alert('DIM SCREEN='+winX);
/*
switch(winX)
{
case 1024: FLA_x = "800"; FLA_y = "450"; break;    
case 1280: FLA_x = "1024"; FLA_y = "576"; break;
default: FLA_x = "900"; FLA_y = "550";
} 
*/

if (winX <= 1024) { FLA_x = "800";  FLA_y = "450" } ;
if (winX >= 1280) { FLA_x = "1200"; FLA_y = "675" } ;
// FLA_x = "800";  FLA_y = "450"

document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+FLA_x+'" height="'+FLA_y+'">');  
document.write('<param name="movie" value="flash/gusella_lev0.swf?varpass=ciao">');
document.write('<param name="quality" value="high">');
document.write('<embed src="flash/gusella_lev0.swf?varpass=ciao" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+FLA_x+'" height="'+FLA_y+'></embed></object>');

}