
	
	
function displayGallery(idGallery) {
		Ext.onReady(function(){
		Ext.get("photogallerydiv").insertHtml('afterBegin','<a id="photo_gallery" class="photo_class2">Photo Gallery</a>');
		Ext.get("photo_gallery").on("click", function() {slideShow(idGallery);});
		});	
	}
	
function slideShow(slideshowId) {
	window.open('/hr/slideshow/slideshow.jsp?slideshowId='+slideshowId, slideshowId, 'height=700,width=740,scrollbars=no,resize=false');
	}
	
