function show(object) {
  if (document.getElementById) {
	document.getElementById(object).style.display = 'inline';	
	
  }
  else if (document.layers && document.layers[object]) {
    document.layers[object].style.display = 'inline';
  }
  else if (document.all) {
    document.all[object].style.display = 'inline';
  }
	
}

function hide(object) {
  if (document.getElementById) {
    document.getElementById(object).style.display = 'none';
  }
  else if (document.layers && document.layers[object]) {
    document.layers[object].style.display = 'none';
  }
  else if (document.all) {
    document.all[object].style.display = 'none';
  }
}

function downloadPDF(url,ecole_id,lang){
	window.open('admin/upl_menus/'+url,'_blank','toolbar=0, location=0, directories=0, status=0, scrollbars=1, resizable=1, copyhistory=0, menuBar=0, width=780, height=400');
	document.location='sql_increment_menu.php?id=' + ecole_id +'&lang=' + lang  ;
	}