
<!--
function objin(a) {a.className='active'};
function objout(a) {a.className='normal'};

function data()
{
   var now = new Date();
   var dayNr = ((now.getDate()<10) ? "0" : "")+ now.getDate();
   var m="marek";
    if ((now.getMonth()+1)==1)
       n=".01."
       m="Styczeń";
if ((now.getMonth()+1)==2)
	   n=".02."
       m="Luty";
if ((now.getMonth()+1)==3)
	   n=".03."
       m="Marzec";
if ((now.getMonth()+1)==4)
	   n=".04."
       m="Kwiecień";
if ((now.getMonth()+1)==5)
	   n=".05."
       m="Maj";
if ((now.getMonth()+1)==6)
	   n=".06."
       m="Czerwiec";
if ((now.getMonth()+1)==7)
	   n=".07."
       m="Lipiec";
if ((now.getMonth()+1)==8)
	   n=".08."
       m="Sierpień";
if ((now.getMonth()+1)==9)
	   n=".09."
       m="Wrzesień";
if ((now.getMonth()+1)==10)
	   n=".10."
       m="Październik";
if ((now.getMonth()+1)==11)
	   n=".11."
       m="Listopad";
if ((now.getMonth()+1)==12)
	   n=".12."
       m="Grudzień";

   var MonthDayYear =(dayNr+" "+n+" "+2008);

   return MonthDayYear;
}

//-->


