<script type = "text/javascript"> //Add spaces between menu links //Placement: Global Header //Coded by Game var spaces = "2"; //Edit number of spaces between menu links (1,2 or 3) var a = document.getElementsByTagName("a"); for (i = 0; i < a.length; i++) { if (a[i].parentNode.parentNode.className == "menubg" && a[i].innerHTML.match(/Home|new topics|help|search|members|calendar|admin|profile|logout|register|login/i)) { if (spaces == "1") { a[i].innerHTML += " "; } if (spaces == "2") { a[i].innerHTML += " "; } if (spaces == "3") { a[i].innerHTML += " "; } } } </script> The code above is meant to let the useer add spaces between their menu items. It works fine. But how do I make it to where they can add as many spaces as they would like, instead of limiting them to 3? Maybe somehow they would add their number in the var 'spaces' and the code would multiply   by that numvber?