function getElementIdByWindowEvent ()
{
  var lId;
  if ( window.event && window.event.srcElement )
  {
    lId =  window.event.srcElement.id;
  }
  return lId ;
}

