/*****************************************************************************/
/*                                                                           */
/* SCRIPT                                                                    */
/*   view_detail.js                                                          */
/*                                                                           */
/* TYPE                                                                      */
/*   javascript library                                                      */
/*                                                                           */
/* DESCRIPTION                                                               */
/*   photo detail rating and comment form validation                         */
/*                                                                           */
/*****************************************************************************/

/*                                                                           */
/* show or hide extra tags                                                   */
/*                                                                           */
function showExtraTags(showMore)
{
	showOrHideElement('populartagsShort', ! showMore);
	showOrHideElement('showMore', ! showMore);
	showOrHideElement('populartagsLong', showMore);
	showOrHideElement('showLess', showMore);
}
