/**
* Autor: Jorge Casas [jorgecasas@iternova.net]
* Version: 1.0.0
* Fecha modificación: 20090323
*/
function replysSendComment(idform,url,target){
	//funcion modificada de cargar_contenido_div_post para permitir envio de comentarios y recargarlo en un div
	getURL = '&nombre='+document.getElementById(idform).nombre.value;
	getURL = getURL + '&email='+document.getElementById(idform).email.value;
	getURL = getURL + '&web='+document.getElementById(idform).web.value;
	getURL = getURL + '&comentario='+document.getElementById(idform).comentario.value;
	getURL = getURL + '&sendnotice='+getRadioButtonSelectedValue(document.getElementById(idform).sendnotice);
	getURL = getURL + '&confirmationImage='+document.getElementById(idform).confirmationImage.value;
	getURL = getURL + '&confirmationValue='+document.getElementById(idform).confirmationValue.value;

	document.getElementById(target).innerHTML = '<div class=\"load\"><img src=\"images/ajaxloading.gif\" alt=\"+\" class=\"floatleft\" /> Cargando...</div>';
	var myConn = new XHConn();
	if (!myConn) alert("XMLHTTP no esta disponible. Intentalo con un navegador mas reciente.");
	var finalizado = function (oXML){document.getElementById(target).innerHTML = oXML.responseText;};
	myConn.connect(url, "POST", "divID=" + target + getURL, finalizado);
	return false;
}