function showAnim(strHref,fState,iFlash) {

	var strSection = strHref.substring(strHref.substring(0,strHref.lastIndexOf('/')).lastIndexOf('/') + 1,strHref.lastIndexOf('/'));
	var strDiv = 'overlayDiv-'+strSection;
	
	var objDiv = document.getElementById(strDiv);

	var strFlash = strSection+'Flash';
	var objFlash = document.getElementById(strFlash);
	
	if(fState == true) {
		objDiv.style.visibility = 'visible';
		if (objFlash) {
			objFlash.GotoFrame(iFlash);
		}
		if (objFlash) {
			objFlash.Play();
		}
	} else {
		objDiv.style.visibility = 'hidden';
		if (iFlash && objFlash) {
			objFlash.GotoFrame(iFlash);
		}
	}
		
}
