<!--
/* w raportach ims - rozwijanie */
function ChangeVis(nrid) {
		var lesy = document.getElementById(nrid);
		if(lesy.style.display == "none") {
			lesy.style.display = "";
		} else {
			lesy.style.display = "none";
		}
	}
/**
 * SelectAllF
 * Zaznacza wszystkie wskazane elementy w formularzu.
 * @param {string} formid
 * @param {string} co
 */
 function SelectAllF(formid,co) {
 	var formularz = document.getElementById(formid);
 	var inputy = formularz.getElementsByTagName('input');
 	for(var i=0; i<inputy.length; i++) {
 		var reg = new RegExp(co,"i");
 		if (reg.test(inputy[i].getAttribute('name'))) {
 			if(inputy[i].checked == true) {
 				inputy[i].checked = false;
 			} else {
 				inputy[i].checked = true;
 			}
 		} 

 	}
 }

function ShowPic(id,gal,width,height) {
			width = parseInt(width)+60;
			height = parseInt(height)+170;
			PhotoWindow = window.open('/showpic.php?id='+ id +'&gal='+ gal,'PhotoWindow','width=' + width + ',height=' + height + ',scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,personalbar=no,directories=no,dependent=yes,resizable=yes');
			PhotoWindow.moveTo((screen.width - width)/2,(screen.height - height)/2);
			PhotoWindow.focus();
		}

//-->