function test()
{
 alert('Ta mere elle boit dla Kro');
}

function checkMandatory()
{
	var error = '';
	var com_man = new Array();
	var com_man_trad = new Array();
	var spec_man = new Array();
	var spec_man_trad = new Array();
  
  com_man.push('account-fname'); com_man_trad.push('name');
  com_man.push('account-email'); com_man_trad.push('email');
  com_man.push('product-datas'); com_man_trad.push('product');
  com_man.push('who-id_type'); com_man_trad.push('who are you');
  com_man.push('problem-id'); com_man_trad.push('problem');
 // com_man.push('desc_pb'); com_man_trad.push('description problem');

  // 1
  spec_man['1'] = new Array(); spec_man_trad['1'] = new Array();
  spec_man['1'].push('problem-underquestion'); spec_man_trad['1'].push('kind of problem');

  // 2
  spec_man['2'] = new Array(); spec_man_trad['2'] = new Array();

  // 3
  spec_man['3'] = new Array(); spec_man_trad['3'] = new Array();
  spec_man['3'].push('problem-underquestion'); spec_man_trad['3'].push('kind of problem');
  
  // 4
  spec_man['4'] = new Array(); spec_man_trad['4'] = new Array();
  spec_man['4'].push('problem-underquestion'); spec_man_trad['4'].push('kind of problem');
  
  // 5
  spec_man['5'] = new Array(); spec_man_trad['5'] = new Array();
  spec_man['5'].push('problem-underquestion'); spec_man_trad['5'].push('kind of problem');
  
  // 6
  spec_man['6'] = new Array(); spec_man_trad['6'] = new Array();
  spec_man['6'].push('problem-underquestion'); spec_man_trad['6'].push('kind of problem');
  
  // 7
  spec_man['7'] = new Array(); spec_man_trad['7'] = new Array();
  spec_man['7'].push('problem-underquestion'); spec_man_trad['7'].push('kind of problem');
  
  // 8
  spec_man['8'] = new Array(); spec_man_trad['8'] = new Array();
  spec_man['8'].push('problem-underquestion'); spec_man_trad['8'].push('kind of problem');

  
  for (var x = 0; x < com_man.length; x++)
  {
		// // Check commons 
		if (document.forms["uniform"].elements[com_man[x]].value == 0 ||  document.forms["uniform"].elements[com_man[x]].value == '')
    {
    	if (error.length > 0)
      	error += ", ";
      error += com_man_trad[x];
    }
    // // Check Specials
    //if (com_man[x] == 'problem-id')
    //{
    //}
  }
  
  if (error.length > 0)
  {
  	o = document.getElementById('errors');
    o.style.display = 'block';
    o.innerHTML = "Some fields are not filled : " + error;
    return (false);
  }
  return (true);
}