function newWindow(newContent,winName) {
	winLeft=((screen.width-600)/2);
	winTop=((screen.height-500)/2);
	winContent = window.open( newContent, winName, 'left='+winLeft+', top='+winTop+',width=600,height=500,locationbar=no,menubar=no,personalbar=no,statusbar=yes,toolbar=no,scrollbars=yes,resizable=no')
	winContent.focus();
}

var ImgFolder = "images/";

function unhighlight(Nazwa)
{
	document.getElementById(Nazwa).src=ImgFolder+Nazwa+".gif";
}

function highlight(Nazwa)
{
	document.getElementById(Nazwa).src=ImgFolder+Nazwa+"_2.gif";
}

