﻿msg = function msg(msg){
	Boxy.alert(msg);
};
error = function error(error){
	Boxy.alert(error);
};
conv = function conv(word){
	wordConved = "";
	
	$.ajax({
	   type: "POST",
	   url:"req_conv.php",
	   data: {word: word},
	   dataType: "json",
	   async: false,
	   success: function(data){
		  wordConved = data.word;
	   }
	}); 
	
	return wordConved;
};