function showStartWindow()
{
  document.getElementById('start_window').style.display ='block';
}

function closeStartWindow()
{
  document.getElementById('start_window').style.display ='none';
}
