  function displayDate() {
    Days = new Date();
    Mnth = Days.getMonth()+ 1;
        
      if (Mnth == 1) {
          Month = "January";
  }
        
      if (Mnth == 2) {
          Month = "February";
  }
        
      if (Mnth == 3) {
          Month = "March";
  }
        
      if (Mnth == 4) {
          Month = "April";
  }
        
      if (Mnth == 5) {
          Month = "May";
  }
        
      if (Mnth == 6) {
          Month = "June";
  }
        
      if (Mnth == 7) {
          Month = "July";
  }
        
      if (Mnth == 8) {
          Month = "August";
  }
        
      if (Mnth == 9) {
          Month = "September";
  }
        
      if (Mnth == 10) {
          Month = "October";
  }
        
      if (Mnth == 11) {
          Month = "November";
  }
        
      if (Mnth == 12) {
          Month = "December";
  }
        
  var y = Days.getYear();
        
      if (y < 1000) y += 1900;
         TheDate = "" + Month +" "+ Days.getDate() + ", " + y;
           return (TheDate);
  }
  

function newWindow(sURL,Name,ImageSource) {

     var pictureWindow = window.open( "", "PictureWindow","resizable,scrollbars=1,width=600,height=600");

       var d = pictureWindow.document;

         d.writeln( '<html>');
         d.writeln( '<head>');
         d.writeln( '<title>');
         d.writeln( '[UNDERBRUSH.NET] = Artists');
         d.writeln( '</title>');
         d.writeln( '<style type="text/css">');
         d.writeln( 'A { color: #ffffff; text-decoration: none; font-size: 9pt; font-weight: bold; }');
         d.writeln( '</style>');
         d.writeln( '</head>');         
         d.writeln( '<body bgcolor="black">');
         d.writeln( '<center>');
         d.writeln( '<img src="' + ImageSource + '" width="640" height="480">');
         d.writeln( '<br>');
         d.writeln( '<A HREF="' + sURL + '">' + Name + '</font></A>');
         d.writeln( '</center>');
         d.writeln( '</body>');
         d.writeln( '</html>');
         d.close();
  }
  
function VerticalWindow(sURL,Name,ImageSource) {

     var pictureWindow = window.open( "", "PictureWindow","resizable,scrollbars=1,width=600,height=600");
       var d = pictureWindow.document;
         d.writeln( '<html>');
         d.writeln( '<head>');
         d.writeln( '<title>');
         d.writeln( '[UNDERBRUSH.NET] = Artists');
         d.writeln( '</title>');
         d.writeln( '<style type="text/css">');
         d.writeln( 'A { color: #ffffff; text-decoration: none; font-size: 9pt; font-weight: bold; }');
         d.writeln( '</style>');
         d.writeln( '</head>');         
         d.writeln( '<body bgcolor="black">');
         d.writeln( '<center>');
         d.writeln( '<img src="' + ImageSource + '" width="480" height="640">');
         d.writeln( '<br>');
         d.writeln( '<A HREF="' + sURL + '">' + Name + '</font></A>');
         d.writeln( '</center>');
         d.writeln( '</body>');
         d.writeln( '</html>');
         d.close();
  }