<!--
    hs.graphicsDir = 'css/graphics/';
    hs.outlineType = 'rounded-white';
    hs.wrapperClassName = 'draggable-header';
	
	
	function show_popup(title, popup_content_id, location_element) {
		/* - title  : the title of the popup
		*
		* - popup_content_id : must be the id of a div element containing
		* all that you want to display inside the popup
		*
		* - location_element  : must be a javascript object corresponding
		* to an element of the page above wich the popup will appear.
		* This could be obtained by function like document.getElementById(id) for example.
		* If location_element is null, the popup will pop in the center of the screen (except for IE...).
		* If location_element is something else than an object corresponding to an element of the page,
		* the popup won't appear at all. Be careful !
		*/
		
		hs.htmlExpand(
			location_element,
			{ headingText: title ,
				maincontentId: popup_content_id,
				align : 'center'
			}
		);
	}
//-->

