
var detailWindow = null;

function openDetailWindow(link)
{
	if (detailWindow != null && detailWindow.closed == false)
	{
		detailWindow.location = link.href;
		detailWindow.focus();
		return;
	}
	detailWindow = window.open(link.href, "_blank", "menubar=yes, toolbar=yes, width=600,height=550,status=no,resizable=yes,scrollbars=yes,left=0,top=0", false);
}

function closeInfoWindow()
{
	detailWindow.close();
	detailWindow = null;
}

