﻿/// Update Postion of KGAlertsControl
function KGAlertsControl_UpdatePos(_controlId, _posType, _posLeft, _posTop)
{
  if(_controlId == null)
    return;
  var div=document.getElementById(_controlId);
  if (div != null)
  {
    var style='';
    if(posType != null && posType !='')
      div.style.position=posType;
    if(posLeft != null && posLeft !='')
      div.style.left=posLeft;
    if(posTop != null && posTop !='')
      div.style.top=posTop;
  }
}


