function query(){
	document.getElementById('md5alida').innerHTML = "Procesando";
	var q=document.getElementById('md5input').value;
	c=new LoadVars();
	c.q=q;
	c.onData=function(info){
		document.getElementById('md5alida').innerHTML = info;
	}
	c.sendAndLoad("files/md5.php",c,"POST");
}