<!--
function ExpandImage( lngImage, lngWidth, lngHeight )
{
	var	strProp;
	strProp = POPUP_MakeProperties( 100, 100, lngWidth, lngHeight, false, false, false, false, false, false, false );
	POPUP_OpenGet( 'imgLargeView.asp?ID=' + lngImage, 'PageImage' + lngImage, strProp );
}

function OpenPageVideo( strVidFilename, lngVidWidth, lngVidHeight )
{
	var	strProp;
	strProp = POPUP_MakeProperties( 100, 100, lngVidWidth, lngVidHeight, false, false, false, false, false, false, false );
	POPUP_OpenGet( 'video/' + strVidFilename, 'PageVideo', strProp );
}

function SwapGalleryImage( lngID )
{
	if ( objImg = document.getElementById( 'imgGalleryLarge' ) )
	{
		objImg.src = 'dataDownload.asp?ID=' + lngID;
	}
	if ( objImgLabel = document.getElementById( 'galImageLabel' ) )
	{
		if( objThumbLabel =  document.getElementById( 'imgThumbText' + lngID ) )
		{
			objImgLabel.innerHTML = objThumbLabel.innerHTML;
		}
	}
	return;
}
//-->
