var moname = new Array ("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
// we need the links and names in an array, so we can loop through the options in the select menu
var archlinks = new Array;
var archnames = new Array;
var i = 0;
tmp="<$BlogArchiveName$>";
mo=tmp.substring(13,15);
yr=tmp.substring(19);
mo=moname[mo - 1];
newdate=mo+" "+yr;
// put first link and name in archlinks[0] and archnames[0], second in [1], ...
archlinks[i] = "archives/<$BlogArchiveLink$>";
archnames[i] = newdate;
i++;
// change current location to archlink when selected from menu
function gothere(where)
{
location.href = where.options[where.selectedIndex].value
}
// tell the script to start a form - the before the " tells javascript that you want to write a " rather
// than interpreting it as the end of the stuff you want to write
document.write("
");
// tell the script to start a select menu that calls the gothere function when it is changed
// change the class= to change the appearance of the menu, but leave the " before and after your class
document.write(" Archives Current "+archnames[i]+" ");
DIN BLOGURILE MOLDOVEI