/* function displayGallery(idGallery)
	This function is called by the insert script when editors add a photo gallery to an article.
	This function assumes that :
		#1. the div tag <div id="photogallerydiv" style="display:none"></div> exists in the article content (part of the pasted script)
		#2. there are only one such div tag.
		*/
// <![CDATA[
function displayLandscapeGallery(idGallery) {

	var flashMsg = "This site requires <a href='http://www.adobe.com/products/flashplayer/' target='_blank'>flash player 8</a> or higher.";

	var flashapp = new FlashObject("/hr/inc/gallery/photogallery_small.swf", "photogallery_small", "400", "480", "8", "#ffffff");
	flashapp.addVariable("brand", "hr");
	flashapp.addVariable("passedID",idGallery);
	flashapp.addParam("wmode", "transparent");
	flashapp.write("photogallerydiv");
	
}
function displayPortraitGallery(idGallery) {

	var flashMsg = "This site requires <a href='http://www.adobe.com/products/flashplayer/' target='_blank'>flash player 8</a> or higher.";

	var flashapp = new FlashObject("/hr/inc/gallery/photogallery_small_blog.swf", "photogallery_small", "350", "680", "8", "#ffffff");
	flashapp.addVariable("brand", "hr");
	flashapp.addVariable("passedID",idGallery);
	flashapp.addParam("wmode", "transparent");
	flashapp.write("photogalleryportraitdiv");
	
}
// ]]>
