//ukrywanie i wyswietlanie diva dla listy targów
function shDiv(id){

	//lapanie elementu
	elem = document.getElementById(id);
	if(elem.style.display == 'none') {
		elem.style.display='block';
	} else {
		elem.style.display = 'none';
	}

}


//popup
function popup(url,width, height)
{
   LeftPosition=(screen.width)?(screen.width-width)/2:100;
   TopPosition=(screen.height)?(screen.height-height)/2:100;
   var Win = window.open(url,'popup','width=' + width + ',height=' + height + ',top='+TopPosition+',left='+LeftPosition+',resizable=0,scrollbars=yes,menubar=no,toolbar=no,status=no')
}

function popup1(url,width, height, name)
{
   LeftPosition=(screen.width)?(screen.width-width)/2:100;
   TopPosition=(screen.height)?(screen.height-height)/2:100;
   var Win = window.open(url,name,'width=' + width + ',height=' + height + ',top='+TopPosition+',left='+LeftPosition+',resizable=0,scrollbars=yes,menubar=no,toolbar=no,status=no')
}

function refreshParent() {
  window.opener.location.href = window.opener.location.href;
  if (window.opener.progressWindow)
    window.opener.progressWindow.close();
  window.close();
}