// Class override file for metrony_album.js
// Used for Urban Schools Slideshow album
// Author rjw 10/18/2001
// updated by CBJ on 10/25/01 for the Travel2001 issue
// updated by CBJ for use in holiday2001 guide -- to become generic file for future use called feature_album.js, as compared to photo_album.js

function ffeatureWriteNextButton(bIncludeTextLink){
	document.writeln('<a href="javascript:fAlbumGoNext()">'+((bIncludeTextLink)?'<strong>Next</strong><br>':''));
	document.writeln('<img alt="'+gAlbumNextAlt+'" src="/images/buttons/rightarrow.gif" width="21" height="23" align="right" valign="top" border="0"></a>');
}

function ffeatureWritePrevButton(bIncludeTextLink){
		document.writeln('<a href="javascript:fAlbumGoPrevious()">'+((bIncludeTextLink)?'<strong>Previous</strong><br>':''));
		document.writeln('<img alt="'+gAlbumPreviousAlt+'" src="/images/buttons/leftarrow.gif" width="21" height="24" align="left" valign="top" border="0"></a>');
}

// Override class prototypes with custom functions
fo_WriteNext=ffeatureWriteNextButton;
fo_WritePrevious=ffeatureWritePrevButton;

var gAlbumNextAlt='Next';
