function pollContent(flagId, effectId){
  if(document.getElementById(flagId)) {
    initLightbox();
    document.getElementById(flagId).id="";
    Effect.Appear(effectId, {duration:3});
  }
  else
    setTimeout("pollContent('"+flagId+"', '"+effectId+"')", 60)
}