// JavaScript Document
function PopupFenster(path1, width, height) {
  path="details.php?check="+path1;
  if(!width) width=500;
  if(!height) height=500;  
  F = window.open(path,"Details","dependent=yes,status=no,width="+width+",height="+height+",left=0,top=0,scrollbars=no,resizable=no,menubar=mo,toolbar=no");
  F.focus();
}

function insa(name)
{
  if(name == "display") {
	document.getElementById(name).style.display = "";
	}
}

function inout(name)
{
	document.getElementById("display").style.display = "none";
}