function Check (name)
          {
           if(name=='one'){
           		if(document.questionone.title.value == '')
              	{
               	  alert('Введите заголовок вопроса!');
               	  return false;
              	}
              	if(document.questionone.body.value == '')
              	{
               	  alert('Введите вопрос!');
               	  return false;
              	}

           }

           if(name=='two'){
           		if(document.questiontwo.title.value == '')
              	{
               	  alert('Введите заголовок вопроса!');
               	  return false;
              	}
              	if(document.questiontwo.body.value == '')
              	{
               	  alert('Введите вопрос!');
               	  return false;
              	}

           }
           if(name=='three'){
           		if(document.answerthree.body.value == '')
              	{
               	  alert('Введите ответ!');
               	  return false;
              	}

           }
           if(name=='four'){
           		if(document.answerfour.body.value == '')
              	{
               	  alert('Введите ответ!');
               	  return false;
              	}

           }
           if(name=='five'){
           		if(document.answerfive.body.value == '')
              	{
               	  alert('Введите ответ!');
               	  return false;
              	}

           }
              return true;
          }

