function openHelpAbout(){
  openPoonMessage(-1);
  $('applicationForm.onglets').style.paddingTop = '0px';
  $('applicationForm.title').innerHTML = '<div style="font-size:1.5em; font-weight:bold; padding-bottom:5px;">HELP</div>';
  $('applicationForm.subscriptionContainer').innerHTML = '';

  selectedOnglet=0;
  var ongletList = new Array();
  var ongletColors = new Array();
  var ongletTextColors = new Array();
  if(ongletsAppForm != null) delete ongletsAppForm;
  appList = new Array();
  appList.push({'idApplication':0, 'name':'Welcome', url:'Static/welcome.html', position:0, 'icon':'Img/question.png'});
  appList.push({'idApplication':0, 'name':'Help', url:'Static/help.html', position:0, 'icon':'Img/help.png'});
  appList.push({'idApplication':0, 'name':'Contact Us', url:'Static/contactus.html', position:0, 'icon':'Img/contactus.png'});
  appList.push({'idApplication':0, 'name':'Developers', url:'Static/developers.html', position:0, 'icon':'Img/developers.png'});

  for(var i=0; i<appList.length; i++){
    ongletList[i] = '<img border="0" width="64px" height="64px" src="'+appList[i].icon+'"><br />'+appList[i].name;
    ongletColors[i] = appList[i].color || '';
    ongletTextColors[i] = appList[i].textColor || '';
  }

  ongletsAppForm = new COnglet(ongletList, 'switchOngletHelp', {
                                        'color':ongletColors,
                                        'textColor':ongletTextColors});
  openTheApplicationForm();
  switchOngletHelp(selectedOnglet);
}


function switchOngletHelp(onglet, parametres){
	controller.requestController('track', 'section=Help&name='+encodeURIComponent(appList[onglet].name));
  switchOnglet(onglet, parametres);
}

