﻿
// please keep this text when you copy the source code
// made by Ragecreations version 0.2

//Get Date
var months=new Array(13);
months[1]="Stycznia";
months[2]="Lutego";
months[3]="Marca";
months[4]="Kwietnia";
months[5]="Maja";
months[6]="Czerwca";
months[7]="Lipca";
months[8]="Sierpnia";
months[9]="Września";
months[10]="Października";
months[11]="Listopada";
months[12]="Grudnia";
var time=new Date();
var lmonth=months[time.getMonth() + 1];
var date=time.getDate();
var year=time.getYear();
if (year < 2000) 
year = year + 1900; 

//Get Time
var now = new Date();
var hours = now.getHours();
var minutes = now.getMinutes()
var timeValue = "" + ((hours >23) ? hours -23 :hours)
<!-- if (timeValue == "0") timeValue = 12; -->
timeValue += ((minutes < 10) ? ":0" : ":") + minutes


//Get Day
var days=new Array(7);
days[0]="Niedziela";
days[1]="Poniedziałek";
days[2]="Wtorek";
days[3]="Sroda";
days[4]="Czwartek";
days[5]="Piątek";
days[6]="Sobota";
var lday=days[time.getDay()];

//-->

