
function insertar_comentario(idPortal, idModulo, idContenido, idNota, tipoEnvio){
var frm = document.getElementById("frmComentario");
var strError = false;
var comentario 		= $("comentario_"+idContenido);
comentario = comentario.value.trim();
if(!strError && comentario <= 1){
strError = "Error. Vuelva a intentar en unos minutos.\n";
comentario.focus();
}
if(strError){
parent.PopUpAlert(strError);
}else{
  var randomUsuario 	= $("recaptcha_response_field");
  	randomUsuarioTxt	= randomUsuario.value;
var query_string = "../_post/hc_washington/insertar_comentario_recaptcha.php?";
// paramatros para el share social
query_string += 'url='+Base64.encode(location.href)+'&idSocialNetworkKey=4&';
if(document.getElementById('Twitter_User'))
query_string += 'Twitter_User='+document.getElementById('Twitter_User').value+'&'
if(document.getElementById('Twitter_Pass'))
query_string += 'Twitter_Pass='+document.getElementById('Twitter_Pass').value+'&'


    query_string += "random="+randomUsuarioTxt+"&";
var challenge = $("recaptcha_challenge_field").value;
 query_string += "challenge="+challenge+"&";
for(i = 0 ; i < frm.length ; i++ ){
if(frm.elements[i].type != "checkbox" || (frm.elements[i].type == "checkbox" && frm.elements[i].checked) ){
query_string += frm.elements[i].name+"="+frm.elements[i].value+"&";
}
}
_post(query_string);
}
}



function insertar_comentarioOLD(idPortal, idModulo, idContenido, idNota, tipoEnvio) {
	
	var autor			= $("autor_"+idContenido);
	var comentario 		= $("comentario_"+idContenido);
	var randomUsuario 	= $("recaptcha_response_field");
	var challenge = $("recaptcha_challenge_field").value;
	autorTxt 			= autor.value;
	comentarioTxt 		= comentario.value;
	randomUsuarioTxt	= randomUsuario.value;

	bool = true;

	
	if(bool && !comentarioTxt.trim()){
		alert("Por favor, ingrese su comentario");
		comentario.focus();
		bool = false;
	}
		
	if(bool && !randomUsuarioTxt.trim()){
		alert("El código de seguridad es incorrecto");
		randomUsuario.focus();
		//$('C4').set('src',$('C4').src+888);
		bool = false;
	}

	if(bool){
		var src = "../_post/hc_washington/insertar_comentario_recaptcha.php?idPortal="+idPortal+"&challenge="+challenge+"&idModulo="+idModulo+"&idContenido="+idContenido+"&autor="+autorTxt+"&comentario="+comentarioTxt+"&idNota="+idNota+"&tipoEnvio="+tipoEnvio+"&random="+randomUsuarioTxt+"&a="+idContenido;
		window._post(src);
	}	
}
function expandAbuso(idComentario){
	document.getElementById("report-abuso_"+idComentario).style.display="none";
	document.getElementById("abuso_"+idComentario).style.display="block";
 }

function reportAbuso(idComentario){
	var src = "../_post/hc_washington/reportar_comentario.php?idComentario="+idComentario;
	window._post(src);
}

 function collapseAbuso(idComentario){
	 document.getElementById("report-abuso_"+idComentario).style.display="block";
	 document.getElementById("abuso_"+idComentario).style.display="none";
 }
 
 function comentariosPagina(pagina,modulo,contenido) {
    if (pagina < 0) {
      pagina = 0;
    }
    new Request({
    url: '/_post/hc_washington/getComentarios.php',
    data: 'idCMSModulo='+modulo+'&pagina='+pagina+'&idContenido='+contenido,
    method: 'get',
   
    onSuccess: function(responseText){
       $("nota-comments").innerHTML = responseText;
    }
}).send();
 }


function checkFacebook(ch){
  if(ch.checked){
  
    if(parseInt($("userFacebook").value)){
      ch.value = 1;
    }else{
      window.onSocialLogin = function(){
        ch.checked = true;
        $("userFacebook").value = 1;
        ch.value = 1;
      }
      FB.login(loginfb);
      ch.checked = false;
    }
  }else{
    ch.value = 0;
  }
}

function checkTwitter(ch){
  if(ch.checked){
    if(parseInt($("userTwitter").value) > 0){
      ch.value = 1;
    }else{
      window.onSocialLogin = function(){
        ch.checked = true;
        $("userTwitter").value = 1;
        ch.value = 1;
      }
      loginTwitter($('URLPHP5').value,$('URLEXTERNARLOGIN').value,$("idUsuario").value);
      ch.checked = false;
    }
  }else{
    ch.value = 0;
  }
}


function check_login_twitter(objid){

	if(document.getElementById(objid).checked){
		query_string = '../_post/hc_washington/comentarios_twitter.php?f=check&objid='+objid;
		_post(query_string);

	}

}


var Base64 = {

	// private property
	_keyStr : "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=",

	// public method for encoding
	encode : function (input) {
		var output = "";
		var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
		var i = 0;

		input = Base64._utf8_encode(input);

		while (i < input.length) {

			chr1 = input.charCodeAt(i++);
			chr2 = input.charCodeAt(i++);
			chr3 = input.charCodeAt(i++);

			enc1 = chr1 >> 2;
			enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
			enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
			enc4 = chr3 & 63;

			if (isNaN(chr2)) {
				enc3 = enc4 = 64;
			} else if (isNaN(chr3)) {
				enc4 = 64;
			}

			output = output +
			this._keyStr.charAt(enc1) + this._keyStr.charAt(enc2) +
			this._keyStr.charAt(enc3) + this._keyStr.charAt(enc4);

		}

		return output;
	},

	// public method for decoding
	decode : function (input) {
		var output = "";
		var chr1, chr2, chr3;
		var enc1, enc2, enc3, enc4;
		var i = 0;

		input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");

		while (i < input.length) {

			enc1 = this._keyStr.indexOf(input.charAt(i++));
			enc2 = this._keyStr.indexOf(input.charAt(i++));
			enc3 = this._keyStr.indexOf(input.charAt(i++));
			enc4 = this._keyStr.indexOf(input.charAt(i++));

			chr1 = (enc1 << 2) | (enc2 >> 4);
			chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
			chr3 = ((enc3 & 3) << 6) | enc4;

			output = output + String.fromCharCode(chr1);

			if (enc3 != 64) {
				output = output + String.fromCharCode(chr2);
			}
			if (enc4 != 64) {
				output = output + String.fromCharCode(chr3);
			}

		}

		output = Base64._utf8_decode(output);

		return output;

	},

	// private method for UTF-8 encoding
	_utf8_encode : function (string) {
		string = string.replace(/\r\n/g,"\n");
		var utftext = "";

		for (var n = 0; n < string.length; n++) {

			var c = string.charCodeAt(n);

			if (c < 128) {
				utftext += String.fromCharCode(c);
			}
			else if((c > 127) && (c < 2048)) {
				utftext += String.fromCharCode((c >> 6) | 192);
				utftext += String.fromCharCode((c & 63) | 128);
			}
			else {
				utftext += String.fromCharCode((c >> 12) | 224);
				utftext += String.fromCharCode(((c >> 6) & 63) | 128);
				utftext += String.fromCharCode((c & 63) | 128);
			}

		}

		return utftext;
	},

	// private method for UTF-8 decoding
	_utf8_decode : function (utftext) {
		var string = "";
		var i = 0;
		var c = c1 = c2 = 0;

		while ( i < utftext.length ) {

			c = utftext.charCodeAt(i);

			if (c < 128) {
				string += String.fromCharCode(c);
				i++;
			}
			else if((c > 191) && (c < 224)) {
				c2 = utftext.charCodeAt(i+1);
				string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
				i += 2;
			}
			else {
				c2 = utftext.charCodeAt(i+1);
				c3 = utftext.charCodeAt(i+2);
				string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
				i += 3;
			}

		}

		return string;
	}
}

