<!--

function SwapProductImage( lngID )
{
	if ( objImg = document.getElementById( 'productImage' ) )
	{
		objImg.src = 'dataDownload.asp?ID=' + lngID;
	}
	return;
}

function SwapPopupImage( lngLargeID, lngHeight, lngWidth )
{
	if ( objPopupImg = document.getElementById( 'test' ) )
	{
		objPopupImg.href = "javascript:POPUP_Open( 'phoImage.asp?ID=" + lngLargeID + "'" + ", 'ProductPhotos', 'width=" + lngWidth + ",height=" + lngHeight + ",directories=no,menubar=no,resizable=no,scrollbars=no,status=no,toolbar=no');";
	}
	return;
}

//-->