function Ipop(sInsel)
{
	iPopUp = window.open('iPOP.php?Insel='+sInsel,'iPop','width=476,height=468,scrollbars=no,status=no,toolbar=no,resizable=no,menubar=no,location=no');
	iPopUp.focus();
}

function toggle_visibility(id) {
  var e = document.getElementById(id);
  if(e.style.display == 'block') {
		e.style.display = 'none';
  }
  else {
		e.style.display = 'block';
  }
}

function open_popup(url, target)
{
	popUp = window.open(url, target,'width=476,height=468,scrollbars=auto,status=no,toolbar=no,menubar=no,location=no');
	popUp.focus();
}

function showProcurementPanel(complexId) {
	id = "procInfo" + complexId;
	toggle_visibility(id + "a");
	toggle_visibility(id + "b");
}