﻿	<!--		
	var last;	

	function showHideDiv(name)
	{
		var divname = "div"+name;
		var d = document.getElementById(divname);

		if (d.style.display == 'none')
			d.style.display = 'block';
		else d.style.display = 'none';
	}

	// zmiana koloru kolumn po najechaniu, nacisnieciu

	function RowOn(Row)
	{
		last = Row.style.backgroundColor;
		Row.style.backgroundColor = "#fcfaec";
		//Row.style.color="#FFFFFF";
		Row.style.cursor = "hand";
	}
	function RowOff(Row)
	{
		Row.style.backgroundColor = last;
		//Row.style.color="#000000";
	}
	function RowDown(Row)
	{
		Row.style.backgroundColor = "#FF0000";
	}

	-->

