function articleContent(idArticle)
{
		advAJAX.get({
   			url : "articlereplace.php",
		 	parameters : {
	 		"article":idArticle
			},
			onSuccess : function(obj) 
			{  
				document.getElementById('articlecontent').innerHTML='';
				document.getElementById('articlecontent').innerHTML = obj.responseText;
				var	Lightbox = Class.create();
			

			},
   			 onError : function(obj) { alert("Error: " + obj.responseText); }
			});		
}