function InteresNoticiaC(iNoticia, iInteres){
	document.getElementById('interes-noticia').innerHTML = "Enviando datos... Espere, por favor";
	var xmlhttp=false;
	try {
			xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
	} catch (e) {
			try {
					xmlhttp = new
					ActiveXObject('Microsoft.XMLHTTP');
		} catch (E) {
			xmlhttp = false;
					}
	}
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
			xmlhttp = new XMLHttpRequest();
	}
	var archivo = '/cinemania/interes-noticia.php?noticia=';
	var interes = '&interes='
	xmlhttp.open('GET', archivo + iNoticia + interes + iInteres, true); 
	xmlhttp.onreadystatechange=function() {
		if (xmlhttp.readyState==4) {
			var content = xmlhttp.responseText;
			if( content != '' ){
				document.getElementById('interes-noticia').innerHTML = content;
			}
		}
	}
	xmlhttp.send(null)
	return;
}
