flashLogin =function()
{
  document.getElementById('modlgn_username').focus();
  document.location = '#';
  var login = document.getElementById('form-login');
  setTimeout(function(){
  login.style.backgroundColor='#333333';
  }, 200);
  setTimeout(function(){
  login.style.backgroundColor='#000000';
  }, 500);
  setTimeout(function(){
  login.style.backgroundColor='#333333';
  }, 800);
  setTimeout(function(){
  login.style.backgroundColor='#000000';
  }, 1100);
}
