var hideSubItemsTimer;

function showSubItems(mainId) {
	document.getElementById( 'subitems_' + mainId ).style.display = 'block';
}

function hideSubItems(mainId) {
  document.getElementById( 'subitems_' + mainId ).style.display = 'none';
}

var award_id = 0;
function aff( id, show ){
	if ( show ){
		document.getElementById( id ).style.display = 'block';
	}
	else{
		document.getElementById( id ).style.display = 'none';
	}
}
