function eventLoad(url_1,id1,date_value){
	//alert(url_1+id1+date_value);
	//document.getElementById("loading"+id1).style.display="block";
	$.ajax({
					url:  url_1+'/eventcalendar_article_frame.php',
					type: "POST",
					dataType: "text",
					data: {iframe:id1,date1:date_value,url_1:url_1},
					success: function(data){
						if(data==""){
							document.getElementById("iFrame"+id1).style.display="none";//0_10
							return;
						}
							//alert(data);
						document.getElementById('iFrame'+id1).innerHTML = data;
						//document.getElementById("loading"+id1).style.display="none";
					},
					error: function(){
						alert("error");
						document.getElementById("iFrame"+id1).style.display="none";//0_10
							return;
						//document.getElementById("loading"+id1).style.display="none";
						
					}
				});	
}
