function MakeIt(form){
var txt='<meta name="description" content="'+form.description.value+'" />\r\n';
txt+='<meta name="keywords" content="'+form.keywords.value+'" />\r\n';
txt+='<meta name="author" content="'+form.author.value+'" />\r\n';
txt+='<meta name="generator" content="'+form.generator.value+'" />\r\n';
txt+='<meta http-equiv="content-language" content="'+form.contentlangage.value+'" />\r\n';
txt+='<meta name="creation_date" content="'+form.creationdate.value+'" />\r\n';
txt+='<meta name="Identifier-URL" content="'+form.url.value+'" />\r\n';
txt+='<meta name="category" content="'+form.categorie.value+'" />\r\n';
txt+='<meta name="publisher" content="'+form.publisher.value+'" />\r\n';
txt+='<meta name="copyright" content="'+form.copyright.value+'" />\r\n';
txt+='<meta name="robots" content="'+form.robots.value+'" />\r\n';
txt+='<meta name="date-revision" content="'+form.revisiondate.value+'" />\r\n';
txt+='<meta name="rating" content="'+form.rating.value+'" />\r\n';

form.source.value=txt;
}
function AddText(form, Action){
var AddTxt="";
var txt="";
form.keywords.value+=AddTxt;
}
function ResetPage(form){
if(confirm("Etes vous sur d'effacer les données en cours ?")){ 
form.description.value=""; 
form.source.value=""; 
form.keywords.value=""; 
form.author.value=""; 
form.generator.value=""; 
form.contentlangage.value=""; 
form.creationdate.value="";
form.url.value="";
form.categorie.value="";
form.publisher.value="";
form.copyright.value="";
form.robots.value=""; 
form.revisiondate.value="";
form.rating.value="";  
}
}
