
function RusDate() {
   monthNames = new Array( "Января","Февраля","Марта","Апреля","Мая","Июня","Июля","Августа","Сентября","Октября","Ноября","Декабря");
   var now = new Date();
   thisYear = now.getYear();
   if(thisYear < 1900) {
          thisYear += 1900
      };
   document.write(now.getDate() + " " + monthNames[now.getMonth()] + " " + thisYear);// -->
   document.write(" " + now.getHours() + ":" + now.getMinutes());
 }

function clearText(thefield)
    {
    if (thefield.defaultValue == thefield.value)
    thefield.value = ""
    }