/**
  -------------------------------------------------------------------------
	                    
	Copyright 2006 GORSKI Ventures. All rights reserved.
	You use this code in your Web pages, provided these opening credit
    lines are kept intact.


    You may not reprint or redistribute this code without permission from 
    GORSKI Ventures.
    -------------------------------------------------------------------------  
*/
// JavaScript Document
    <!--
    // Date Display Function
    function displayDate()
    {
      var months = new Array(12);
	  var script_enabled = false;
	  var container = null;
	  
	  months[0]  = "January";
      months[1]  = "February";
      months[2]  = "March";
      months[3]  = "April";
      months[4]  = "May";
      months[5]  = "June";
      months[6]  = "July";
      months[7]  = "August";
      months[8]  = "September";
      months[9]  = "October";
      months[10] = "November";
      months[11] = "December";
      
	  var today = new Date();
      var day   = today.getDate();
      var month = today.getMonth();
      var year  = today.getYear();
      if (year < 1900)
      {
         year += 1900;
      }
      
	return displayDate = day + " " + months[month] + " " + year;
		
    }
    //-->