    name = (navigator.appName);
	now = new Date();
	day = now.getDate();  
	month = now.getMonth();
	date = now.getDay();
	year = now.getYear();
	
	if (name == "Netscape")
  	 {
  	 year = (year + 1900); 
   	 }
	 
	if (name == "Microsoft Internet Explorer") 
	 {
  	 year = (year + 0);
   	 }
		
   	    {
    	    if(date == '0')
   	       {
   	        document.write ("Sunday, ");
    	       }
    	    if(date == '1')
   	       {
   	        document.write ("Monday, ");
    	       }
    	    if(date == '2')
   	       {
   	        document.write ("Tuesday, ");
    	       }
    	    if(date == '3')
   	       {
   	        document.write ("Wednesday, ");
    	       }
    	    if(date == '4')
   	       {
   	        document.write ("Thursday, ");
    	       }
    	    if(date == '5')
   	       {
   	        document.write ("Friday, ");
    	       }
    	    if(date == '6')
   	       {
   	        document.write ("Saturday, ");
    	       }
	    }
		
    	    if(month == '0')
   	       {
   	        document.write ("January ");
    	       }
    	    if(month == '1')
   	       {
   	        document.write ("February ");
    	       }
    	    if(month == '2')
   	       {
   	        document.write ("March ");
    	       }
    	    if(month == '3')
   	       {
   	        document.write ("April ");
    	       }
    	    if(month == '4')
   	       {
   	        document.write ("May ");
    	       }
    	    if(month == '5')
   	       {
   	        document.write ("June ");
    	       }
    	    if(month == '6')
   	       {
   	        document.write ("July ");
    	       }
    	    if(month == '7')
   	       {
   	        document.write ("August ");
    	       }
    	    if(month == '8')
   	       {
   	        document.write ("September ");
    	       }
    	    if(month == '9')
   	       {
   	        document.write ("October ");
    	       }
    	    if(month == '10')
   	       {
   	        document.write ("November ");
    	       }
    	    if(month == '11')
   	       {
   	        document.write ("December ");
    	       }

	
	document.write (day + ", " + year);
