function Confirm(txtFirstName,txtEmail)
{
 //alert(txtFirstName); 
 //alert(txtEmail);
 /* var takanonBoxObj = document.getElementById("takanonBox");
  		
  var RadioBoxVest1 = document.getElementById("RadioVest1");
  var RadioBoxVest2 = document.getElementById("RadioVest2");
  var RadioBoxVest3 = document.getElementById("RadioVest3");
  
  var RadioBoxMask1 = document.getElementById("RadioMask1");
  RadioOk = false;
  for (i=0; i<RadioBoxMask1.length; i++)
  {
    if (RadioBoxMask1[i].checked) {RadioOk = true}
  }*/

 /* var RadioBoxComplete1 = document.getElementById("RadioComplete1");
  var RadioBoxComplete2 = document.getElementById("RadioComplete2");
  var RadioBoxComplete3 = document.getElementById("RadioComplete3");
  var RadioBoxMan1 = document.getElementById("RadioMan1");
  var RadioBoxMan1 = document.getElementById("RadioMan2");
  var RadioBoxMan1 = document.getElementById("RadioMan3");
  var RadioBoxWoman = document.getElementById("RadioWoman1");
  var RadioBoxWoman = document.getElementById("RadioWoman2");
  var RadioBoxWoman = document.getElementById("RadioWoman3");*/
  
  var Name = document.getElementById(txtFirstName).value;
  var Email = document.getElementById(txtEmail).value;
  
  //alert(Name); 
  //alert(Email);
  //var Email = window.document.text_form.txtEmail.value;
  //var Age = window.document.text_form.txtAge.value
  //var Gender = window.document.text_form.txtGender.value
  //alert(Name); 
  //alert(Name); 
  /*if(!takanonBoxObj.checked)
   {
	   alert("יש לקרוא ולהסכים לתקנון");
	   return false;
   }
  if (RadioOk = false)
   {
	   alert("יש לבחור את צבע המסכה");
	   return false;
   }
  if((!RadioBoxVest1.checked) && (!RadioBoxVest2.checked) && (!RadioBoxVest3.checked))
   {
	   alert("יש לבחור את צבע הווסט");
	   return false;
   }
  if((!RadioBoxComplete1.checked) && (!RadioBoxComplete2.checked) && (!RadioBoxComplete3.checked))
   {
	   alert("יש להשלים את המשפט");
	   return false;
   }
  if((!RadioBoxMan1.checked) && (!RadioBoxMan2.checked) && (!RadioBoxMan3.checked))
   {
	   alert("יש לבחור סרטון לגבר");
	   return false;
   }
  if((!RadioBoxWoman1.checked) && (!RadioBoxWoman2.checked) && (!RadioBoxWoman3.checked))
   {
	   alert("יש לבחור סרטון לאישה");
	   return false;
   }*/
   //alert(Name); 
  if  ((Name=='') || (Email==''))
   {
    //alert("123"); 
    /*if (Gender=='')   window.document.text_form.txtGender.style.background="#E0DCD0";
     else window.document.text_form.txtGender.style.background="white";
     
     if (Age=='')   window.document.text_form.txtAge.style.background="#E0DCD0";
     else window.document.text_form.txtAge.style.background="white";*/
     
    if (Name=='') document.getElementById(txtFirstName).style.background="#E0DCD0";
     else document.getElementById(txtFirstName).style.background="white"; 
     
    if (Email=='')  document.getElementById(txtEmail).style.background="#E0DCD0";
     else document.getElementById(txtEmail).style.background="white"; 
	return false
   }
   alert("The Datas Insert To DataBase");
   return true
}