////////// REMOTE IMAGE LINKS/////////
function getImage(imagenID, imagenURL, desc, title, permalink, date, comments, fullURL){
	var u = document.getElementsByTagName('li');
		for (var a = 0; (elemento = u[a]); a++) {
			if (elemento.id == "activo"){
				elemento.id = null;
			}
		}
	var laimagen = document.createElement('img');
	laimagen.onload = function (evt) {
		document.getElementById(imagenID).src=this.src;
	}
	laimagen.src = imagenURL;
	l = document.getElementById('laDesc');
	l.innerHTML = desc;
	t = document.getElementById('theTit');
	t.firstChild.innerHTML = title;
	t.firstChild.setAttribute("title", title);
	t.firstChild.setAttribute("href",permalink);
	d = document.getElementById('theDat');
	d.innerHTML = date;
	c = document.getElementById('commentsNum');
	c.firstChild.innerHTML = comments;
	c.firstChild.setAttribute("href",permalink);
	v = document.getElementById('fullpreview');
	v.firstChild.setAttribute("href",fullURL);
	v.firstChild.setAttribute("title", title);

}