// DIGITAL MOBILES S.L (Digitalak): Power_point.
// www.digitalak.com
<!--
var xmlHttp_Power_point
var Power_point_aktibatua = ""
function showPower_point_zuzenean()
{ 
xmlHttp_Power_point=GetXmlHttpObject_Power_point()
if (xmlHttp_Power_point==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
var url="php/power_point_zuzenean.php"
url=url+"?sid="+Math.random()
xmlHttp_Power_point.onreadystatechange=stateChanged_Power_point 
xmlHttp_Power_point.open("GET",url,true)
xmlHttp_Power_point.send(null)
}
function updatePower_point_zuzenean(aktibatua)
{ 
xmlHttp_Power_point=GetXmlHttpObject_Power_point()
if (xmlHttp_Power_point==null)
 {
 alert ("Browser does not support HTTP Request")
 return
 }
var url="php/power_point_zuzenean_update.php"
url=url+"?aktibatua="+aktibatua
url=url+"&sid="+Math.random()
//xmlHttp_Power_point.onreadystatechange=stateChanged_Power_point 
xmlHttp_Power_point.open("GET",url,true)
xmlHttp_Power_point.send(null)
}
function stateChanged_Power_point() 
{ 
if (xmlHttp_Power_point.readyState==4 || xmlHttp_Power_point.readyState=="complete")
 { 
 if(Power_point_aktibatua != xmlHttp_Power_point.responseText){
	Power_point_aktibatua = xmlHttp_Power_point.responseText;
 	document.getElementById('power_point').innerHTML="<embed src=\"power_point/"+ xmlHttp_Power_point.responseText +"\" quality=\"high\" pluginspage=\"http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"620\" height=\"465\"></embed>";
 	}
 } 
}
function GetXmlHttpObject_Power_point()
{
var xmlHttp_Power_point=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlHttp_Power_point=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlHttp_Power_point=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlHttp_Power_point=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlHttp_Power_point;
}

// -->