function StartEngineX(div_enginex, firma_id, user_id, code, div_width, div_height)
{ 
  
  var divObj;

  if( div_width == undefined ) div_width = '100%'; 
  if( div_height == undefined ) div_height = '100%'; 
  if( div_enginex == undefined ) div_enginex = ''; 
  if( firma_id == undefined ) firma_id = ''; 
  if( user_id == undefined ) user_id = ''; 
  if( code == undefined ) code = ''; 
  
  divObj=document.getElementById(div_enginex);
  
  if (divObj==null)
  {
   alert('Div not found'+div_enginex+'! Can not show') ;
   return;
  } 
  
  divObj.innerHTML =  '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" id="MobileKorpa" width="'+div_width+'" height="'+div_height+'" codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">			<param name="movie" value="http://www.mobilearea.info/enginex.php?PRELOG_firma='+firma_id+'&PRELOG_username='+user_id+'&PRELOG_password='+code+'" />			<param name="quality" value="high" />			<param name="bgcolor" value="#ffffff" /><param name="PRELOG_firma" value="'+firma_id+'" /><param name="PRELOG_username" value="'+user_id+'" /><param name="PRELOG_password" value="'+code+'" /><param name="allowScriptAccess" value="sameDomain" />			<embed src="http://www.mobilearea.info/enginex.php?PRELOG_firma='+firma_id+'&PRELOG_username='+user_id+'&PRELOG_password='+code+'" quality="high" bgcolor="#ffffff"				width="'+div_width+'" height="'+div_height+'" name="MobileKorpa" align="middle"				play="true"	loop="false" quality="high" PRELOG_firma="'+firma_id+'"	PRELOG_username="'+user_id+'"	PRELOG_password="'+code+'" allowScriptAccess="sameDomain"	type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer"></embed></object>';

}

