function cleanFilename( strFilename )
{
	return strFilename.replace( /[\s\+\;\,\.\-\=\*\']/g, '_' );
}

function showComments( strStoryName )
{
/*	if ( HaloScan )
		HaloScan( cleanFilename( strStoryName ) );
	else*/
		alert( 'Comments are currently unavailable' );
}

function showCommentCount( strStoryName )
{
/*	if ( postCount )
		postCount( cleanFilename( strStoryName ) );
	else*/
		document.write( "Comments Unavailable" );
        
}

