\n');
}
function peli_DoFSCommand(command,args){
alert(args);
url="email.php?"+args;
if(window.XMLHttpRequest){
req = new XMLHttpRequest();
req.onreadystatechange = procesarReq;
req.open('GET',url,true);
req.send(null);
}else if(window.ActiveXObject){
req = new ActiveXObject("Microsoft.XMLHTTP");
if(req){
req.onreadystatechange = procesarReq;
req.open('GET',url,true);
req.send();
}
}
}
function procesarReq(){
var debugi=document.getElementById("debug");
if(req.readyState == 4){
debugi.innerHTML = req.responseText;
alert("Su(s) mensaje(s) han sido enviado(s)");
}
}
You need to upgrade your Flash Player
This is replaced by the Flash content.
Place your alternate content here and users without the Flash plugin or with
Javascript turned off will see this. Content here allows you to leave out noscript
tags.