// JavaScript Document
function popupTorpedo(){
	window.open('torpedo_form.php', 'page','resizable=no, toolbar=no ,location=no ,status=no ,menubar=no ,scrollbars=no , width=210,height=250,scrollbars=no');
}

function popupVerTorpedo(){
	window.open('torpedo_list.php', 'page','resizable=no, toolbar=no ,location=no ,status=no ,menubar=no ,scrollbars=yes , width=200,height=500,scrollbars=no');
}

function enviarTorpedo(){
	var texto = document.getElementById("texto").value;
	var remetente = document.getElementById("remetente").value;
	
	var param = "texto="+texto+"&remetente="+remetente;
	ajaxExecute(param, "div_torpedo", "torpedo_rule.php", "");
}