function OpenWnd(p_strFileName, p_strWindowName, p_strWindowOptions, p_blnSetFocus)
{
	var wndPopup =
		window.open(p_strFileName, p_strWindowName, p_strWindowOptions);
	
	// Ensure that focus is set to the newly-opened window, if requested.
	if (p_blnSetFocus)
		wndPopup.focus();
		
	return (wndPopup);
}

function ShowPhotoAlbum(p_strPhotoAlbumID, p_strIdxPhoto)
{
	OpenWnd(
		"/photo_album.htm?album=" + p_strPhotoAlbumID + "&index=" + p_strIdxPhoto,
		"wndPhotoAlbum",
		"toolbar=yes,status=yes,scrollbars=yes,resizable=yes,width=450,height=320,left=5,screenX=5,top=5,screenY=5",
		true);
}

function ShowMap()
{
	OpenWnd(
		"http://www.mapquest.com/maps/map.adp?location=rI%2bTy4aZHzKQ3FlHA25ptOLjEWTteWeyOa9DfZQ1%2ffHxi7j75uYligSlXu3XoC3L%2bTNJWWbHzAbvx2rnSSctbdAcL8iKzLAhxRklq2X3AmlB0MAMB%2b%2b%2fBvRMoVflZ7Bq&address=667%20New%20Ballas%20Rd%2e&city=St%2e%20Louis&state=MO&zipcode=63141&country=US&addtohistory=",
		"wndMap",
		"toolbar=yes,status=yes,scrollbars=yes,resizable=yes,width=780,height=400,left=15,screenX=15,top=15,screenY=15",
		true);
}

function CS_HideIELinkFocus()
{
	for (var intIdxLink in document.links)
		document.links[intIdxLink].onfocus = document.links[intIdxLink].blur;
}

if (document.all)
{
	document.onmousedown = CS_HideIELinkFocus;
}
