<!-- //Su pagina da un solo ordine
var keylist = "abcdefghijklmnopqrstuvwxyz1234567890"; 
//var temp = '' 
function generatepass(plength){
temp = ''; for (i=0; i<plength; i++) temp += keylist.charAt(Math.floor(Math.random()*keylist.length)); 
return temp; 
}
function populateform(enterlength){
document.formbosc.password.value = generatepass(enterlength); }  
//-->

<!-- //Su pagina di pił ordini
var keylist = "abcdefghijklmnopqrstuvwxyz1234567890"; 
//var temp = '' 
function generatepass(plength){
temp = ''; for (i=0; i<plength; i++) temp += keylist.charAt(Math.floor(Math.random()*keylist.length)); 
return temp; 
}
function populateform(enterlength){
document.modulo.password.value = generatepass(enterlength); }  
//-->
