// File di configurazione filmato flash

function $( id )
{
    if (document.getElementById)
        var returnVar = document.getElementById(id);
    else if (document.all)
        var returnVar = document.all[id];
    else if (document.layers)
        var returnVar = document.layers[id];
    return returnVar;
}
try{
var so = new SWFObject("flash/clip_en.swf", "animazione", "800", "300", "9", "#999999");
		//so.addVariable("flashVarText", "this is passed in via FlashVars"); // this line is optional, but this example uses the variable and displays this text inside the flash movie
		so.addVariable("clipURL", "flash/animazione_en.swf");
		so.addParam("clipURL", "flash/animazione_en.swf");
		so.addParam("allowScriptAccess", "always");
		so.useExpressInstall('flash/expressinstall.swf');
		
so.write("flash");


// get our flash movie object
      var flashMovie = $("animazione");
      

		function fl_Act(action){
		
		if(action=='pump'){
	 	flashMovie.callPump("<b>UNiPUMPS</b><br>division is specialised in the production of fire fighting systems, household and industrial water pumping systems; a lot of attention has been paid to the simple to install and fully equipped \"turnkey\" systems.");
		}
		if(action=='gen'){
		flashMovie.callGen("<b>MWR Generators</b><br>division specialised in the production of energy through a full range of generator sets and storage cell anti black-out systems.");
		}
		if(action=='pan'){
		flashMovie.callPan("<b>MWR Control Pannels</b><br>division specialised in the production of pump/motor control systems and control panels with electronic, electromechanical or frequency inverter logic. In addition to the high number of standard products the client also has the opportunity to personalise his choice.");
		}
		
		
		}
}catch(e){
alert(e);
}
