function printDirection(conAddSeq)
{
 w = window.open("./Ar03Drucken.jsp?conAddSeq="+conAddSeq, "", "width=460,height=400");
 w.focus();
}

function mapWindow(conSeq, picSeq)
{
 w =
 window.open("./Ar03Zoom.jsp?conSeq="+conSeq+"&picSeq="+picSeq, "", "width=650,height=584");
 w.focus();
}

var isActive="";

function showTh(id)
{
	if(isActive!="")
	{
		hideTh(isActive);
	}
	var dispElement = document.getElementById("thDisplayDiv"+id);
	if(dispElement)
	{
		dispElement.style.visibility="visible";
		isActive = id;
	}
}

function hideTh(id)
{
	var dispElement = document.getElementById("thDisplayDiv"+id);
	if(dispElement)
	{
		dispElement.style.visibility="hidden";
		isActive = "";
	}
}	
