function diaShow(key)
  {
  key_go = parseInt(key)+1;
  if(key_go >= pics.length){ key_go = 0; }
  document.getElementById('diaPic').src = pics[key_go];
  func = 'diaShow(\''+key_go+'\')';
  setTimeout(func, timeOut);
  }
function start_diaShow()
  {
  key = 0;
  func = 'diaShow(\''+key+'\')';
  setTimeout(func, timeOut);
  }
timeOut = 6000;
