descObj = new Object();

descObj.africa = new Object();
descObj.africa.title   = 'Africa';
descObj.africa.content = 'African students and the Valley Committee of Conscience will ' +
      'be displaying African memorabilia and having intermittent presentations on the ' +
	  'humanitarian concerns in Northern Uganda, Darfur and Sudan.';

descObj.carpatho_rusyn = new Object();
descObj.carpatho_rusyn.title   = 'Carpatho Rusyn';
descObj.carpatho_rusyn.content = 'The Carpatho-Rusyn Society will display and sell ' +
            'memorabilia as well as halupki (stuffed cabbage) and haluski. A hands-on ' +
			'demonstration of Pysanky, the art of intricately decorating Easter eggs ' +
			'will also be available.';

descObj.croatia = new Object();
descObj.croatia.title   = 'Croatia';
descObj.croatia.content = 'St. Peter &amp; Paul Church will sell kolbasi and sauerkraut.';

descObj.germany = new Object();
descObj.germany.title   = 'Germany';
descObj.germany.content = 'The Youngstown Männerchor will display memorabilia and sell ' +
            'grilled bratwurst and kraut sandwiches.';

descObj.greece = new Object();
descObj.greece.title   = 'Greece';
descObj.greece.content = 'Selling gyros, baklava and other Greek pastries.';

descObj.hungary = new Object();
descObj.hungary.title   = 'Hungary';
descObj.hungary.content = 'Youngstown American-Hungarian Club selling stuffed cabbage, ' +
            'cabbage &amp; noodles,	crepes and pastries.';

descObj.italy = new Object();
descObj.italy.title   = 'Italy';
descObj.italy.content = 'Our Lady of Mt. Carmel displaying memorabilia and selling ' +
            'meatball and sausage sandwiches.';

descObj.palestine = new Object();
descObj.palestine.title   = 'Palestine';
descObj.palestine.content = 'Displaying and selling memorabilia. Selling traditional ' +
            'Middle Eastern foods.';

descObj.poland = new Object();
descObj.poland.title   = 'Poland';
descObj.poland.content = 'Polish Arts Club selling and displaying memorabilia and ' +
            'selling pierogi, kielbasa and kraut and halushki.';

descObj.puerto_rico = new Object();
descObj.puerto_rico.title   = 'Puerto Rico';
descObj.puerto_rico.content = 'OCCHA will serve traditional Puerto Rican food such as ' +
            'red rice with gandules and pastelillos.';

descObj.romania = new Object();
descObj.romania.title   = 'Romania';
descObj.romania.content = 'Holy Trinity Romanian Orthodox Church will be selling ' +
            'stuffed cabbage, mititte and Romanian pastries as well as displaying ' +
			'memorabilia.';

descObj.ukraine = new Object();
descObj.ukraine.title   = 'Ukraine';
descObj.ukraine.content = 'Besides displaying memorabilia, St. Anne’s Ukrainian ' +
            'Church will be selling baked goods.';

descObj.wales = new Object();
descObj.wales.title   = 'Wales';
descObj.wales.content = "Welsh National - St. David's of Youngstown displaying " +
            "memorabilia and selling Welsh tea cakes.";



function displayInfo(boxName,row) {
  var row = (row == null) ? 1 : row;
  var box_DOMObj = document.getElementById('flag_desc');
  var boxTitle_DOMObj = document.getElementById('flag_desc_title');
  var boxContent_DOMObj = document.getElementById('flag_desc_content');
  var newMargin = (row * 100) + 5;
  
  boxTitle_DOMObj.innerHTML = descObj[boxName].title;
  boxContent_DOMObj.innerHTML = descObj[boxName].content;
  
  box_DOMObj.style.marginTop = newMargin + 'px';
  box_DOMObj.style.display = 'block';
}

function hideInfo(boxName) {
  var box_DOMObj = document.getElementById('flag_desc');
  box_DOMObj.style.display = 'none';
}