// JavaScript Document
function Toggle(theDiv, theImage, thePage)
{
	var InfoDiv = document.getElementById(theDiv);
	var goToTop = document.getElementById(thePage);

	if (InfoDiv.style.display  == 'none')
	{
		InfoDiv.style.display  = 'block';
		document.images[theImage].src = "../img/arrow_red_open.gif";
		goToTop.style.display  = 'block';
	}
	else
	{
		InfoDiv.style.display = 'none';
		document.images[theImage].src = "../img/arrow_red_closed.gif";
		goToTop.style.display  = 'none';
	}
}

function openIBW(URL)
{
	window.open(URL , "new_IBW")
}

function openInfo(infoURL)
{
	window.open(infoURL , "IBWRelatedInformation")
}

function openMap(infoMap)
{
	window.open(infoMap , "IBWRelatedInformation", "width=700,height=700,scrollbars=1,resizable=1,status=1")
}

