var showDateShort = 1;
var showDate= 2;
var showDateTime= 3;
var showTime= 4;

function ShowDateTime(dateStyle)
{
	var today = new Date();
	var dStr = "";
	
	switch (dateStyle)
	{
		case showDateShort:
			dStr = today.toDateString();
			break;
		case showDateTime:
			dStr = today.toLocaleString();
			break;
		case showTime:
			dStr = today.toLocaleTimeString();
			break;
		case showDate:
		default:
			dStr = today.toLocaleDateString();
			break;
	}
	document.write(dStr);
}

function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite
      ("http://www.e-zgierz.eu","Najlepsza Strona Startowa")
      }
   }


function okno(formularz) {
var okno = window.open(formularz.options[formularz.selectedIndex].value,'','scrollbars=yes,menubar=yes,resizable=yes,toolbar=yes,location=yes,status=yes');
}

function oko() {
 windowW = 400;
 windowH = 520;
 URL = "http://www.e-zgierz.eu";
 windowL = ((screen.width - windowW) / 2);
 windowT = ((screen.height - windowH) / 2);
 s=',top='+windowT+',left='+windowL+',width='+windowW+',height='+windowH;
 O = window.open(URL, 'xxx', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0'+s);
 O.focus();
}
