function simulateSelect(id, title){
	hideAll ( );
	// Hide all the DIV's
	//document.getElementByClass('hideMe').style.display = 'none'; 	
	document.getElementById('selectedItem').innerHTML = title; 
  // Make a DIV visible in the page
	document.getElementById('complaint'+ id).style.display = 'block'; 
	// Hide the UL again
	document.getElementById('listIems').style.display = 'none';
	
	getFlashMovie('lenaLoader').setMovie(id);
}

 function getFlashMovie(movieName) {
  var isIE = navigator.appName.indexOf("Microsoft") != -1;
  return (isIE) ? window[movieName] : document[movieName];
 }
