function ClickGalleria(gallId,color) {
   //document.getElementById('aGall'+gallSelected).style.removeProperty("background-color");
   document.getElementById('aGall'+gallSelected).style.backgroundColor='';
   document.getElementById('aGall'+gallId).style.backgroundColor  = color;
   gallSelected = gallId;
}
function limitText(limitField, limitNum) {
	if (document.getElementById(limitField).value.length > limitNum) {
		document.getElementById(limitField).value = document.getElementById(limitField).value.substring(0, limitNum);
	}
}

