function carrega_capsula(adreca,div,pagina,lang,foto) {
	$('.right-col').load(adreca+'/'+lang+'/'+pagina,function(data){
		$(".text-content").jScrollPane();
//		$('#popupContainer').load(adreca+'/'+lang+'/'+foto);
                                                        var max_height=$('div#left-column').height();
                                                        if(max_height>555)
                                                        {
                                                                var im = $('div.item-media').height();
                                                                $('div#scroll2 div.jScrollPaneContainer').css('height', (max_height-(im+10))+'px');
                                                        }
	});

}
var capsula='';
function canvi_color1(id,color){
	document.getElementById('s_'+id).style.color='#'+color;
}

function canvi_color2(id){
	if (capsula!=id) document.getElementById('s_'+id).style.color='#000000';
	
}

function color_permanent(id,color){
	document.getElementById('s_'+id).style.color='#'+color;
	if (capsula!='') document.getElementById('s_'+capsula).style.color='#000000';
	capsula=id;
}

function test_date(lang) {
	if ((document.getElementById("ini_day").value!='dd' && document.getElementById("ini_day").value!='') 
	|| (document.getElementById("ini_month").value!='mm' && document.getElementById("ini_month").value!='')
	|| (document.getElementById("ini_year").value!='yyyy' && document.getElementById("ini_year").value!='')){
		if (document.getElementById("ini_day").value.length!=2 || isNaN(document.getElementById("ini_day").value) || document.getElementById("ini_day").value<1 || document.getElementById("ini_day").value>31) {
			if (lang=='es') alert("Fecha de inicio incorrecta. El n\xFAmero de d\xEDa debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Begining's date is incorrect. Day's number have to had two digits.");
			if (lang=='ca') alert("Data d'inici incorrecte. El nombre de dia ha de tenir dos d\xEDgits.");
			return false;
		}
		if (document.getElementById("ini_month").value.length!=2 || isNaN(document.getElementById("ini_month").value) || document.getElementById("ini_month").value<1 || document.getElementById("ini_month").value>12) {
			if (lang=='es') alert("Fecha de inicio incorrecta. El n\xFAmero de mes debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Begining's date is incorrect. Month's number have to had two digits.");
			if (lang=='ca') alert("Data d'inici incorrecte. El nombre de mes ha de tenir dos d\xEDgits.");
			return false;
		}
		if (document.getElementById("ini_year").value.length!=4 || isNaN(document.getElementById("ini_year").value) || document.getElementById("ini_year").value<1900 || document.getElementById("ini_year").value>2050) {
			if (lang=='es') alert("Fecha de inicio incorrecta. El n\xFAmero de a\xF1o debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Begining's date is incorrect. Year's number have to had two digits.");
			if (lang=='ca') alert("Data d'inici incorrecte. El nombre d'any ha de tenir dos d\xEDgits.");
			return false;
		}
	}
	
	if ((document.getElementById("fin_day").value!='dd' && document.getElementById("fin_day").value!='') 
	|| (document.getElementById("fin_month").value!='mm' && document.getElementById("fin_month").value!='')
	|| (document.getElementById("fin_year").value!='yyyy' && document.getElementById("fin_year").value!='')){
		if (document.getElementById("fin_day").value.length!=2 || isNaN(document.getElementById("fin_day").value) || document.getElementById("fin_day").value<1 || document.getElementById("fin_day").value>31) {
			if (lang=='es') alert("Fecha final incorrecta. El n\xFAmero de d\xEDa debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Final's date is incorrect. Day's number have to had two digits.");
			if (lang=='ca') alert("Data final incorrecte. El nombre de dia ha de tenir dos d\xEDgits.");
			return false;
		}
		if (document.getElementById("fin_month").value.length!=2 || isNaN(document.getElementById("fin_month").value) || document.getElementById("fin_month").value<1 || document.getElementById("fin_month").value>12) {
			if (lang=='es') alert("Fecha final incorrecta. El n\xFAmero de mes debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Final's date is incorrect. Month's number have to had two digits.");
			if (lang=='ca') alert("Data final incorrecte. El nombre de mes ha de tenir dos d\xEDgits.");
			return false;
		}
		if (document.getElementById("fin_year").value.length!=4 || isNaN(document.getElementById("fin_year").value) || document.getElementById("fin_year").value<1900 || document.getElementById("fin_year").value>2050) {
			if (lang=='es') alert("N\xFAmero de fecha final de a\xF1o no v\xE1lido. Debe tener dos d\xEDgitos.");
			if (lang=='en') alert("Final's date is incorrect. Year's number have to had two digits.");
			if (lang=='ca') alert("Data final incorrecte. El nombre d'any ha de tenir dos d\xEDgits.");
			return false;
		}
	}
	
	return true;
}

