﻿
function Pokaz(nazwa)
{
  document.getElementById(nazwa).style.visibility = 'visible';
}
function Ukryj(nazwa)
{
  document.getElementById(nazwa).style.visibility = 'hidden';
}


function on(nazwa)
{
  document.getElementById(nazwa).style.background = 'url(/images/menuTopBg.gif) repeat-x top';

}
function off(nazwa)
{
  document.getElementById(nazwa).style.background = '';
}


function popUp(page) {
    window.open(page, "", "width=800 height=500,scrollbars=yes,menubar=no,resizable=yes");
}

function checkLen(textArea,maxLength)
{
	if(textArea.value.length > maxLength)
	{
		textArea.value = textArea.value.substring(0,maxLength);
	}
}
