// JavaScript Document

function display(lang){
	
	
	//variabili
  //l=lingua
  //cF=file di configurazione
  //aP=absolutepath
  //rP=relPath
  
  var cF="videoConcept_"+lang+".es";
  var aP="http://www.effettispeciali.com/aww";
  var rP="../../../aww";
	
	
  var shtml="";
  shtml += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"";
  shtml += " codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\"";
  shtml += "  width=\"780\" height=\"422\" >";
  shtml += " <param name=\"movie\" value=\"../../aww/modules/simulatori-di-realta/playerApproccio.swf\" id=\"ESM\">";
  
   shtml += " <param name=\"FlashVars\" value=\"l="+lang+"&cF="+cF+"&aP="+aP+"&rP="+rP+"\">";
  
  shtml += " <param name=\"wmode\" value=\"transparent\">";
  shtml += " <param name=\"quality\" value=\"high\">";
  
  shtml += " <embed src=\"../../aww/modules/simulatori-di-realta/playerApproccio.swf\" FlashVars=\"l="+lang+"&cF="+cF+"&aP="+aP+"&rP="+rP+"\" quality=high wmode=transparent width=\"780\" height=\"422\" name=\"ESM\" ";
  
  shtml += "  type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>";
  shtml += "     </object>";
  shtml += "</div>";
  
	var mv = document;
	var v = mv.getElementById("playerApproccio");
	v.innerHTML = shtml;
}

