// JavaScript Document
function show_lightbox ( url ) {
	// alert ( "show_lightbox ( url:" + url + " )" );
	document.getElementById ( "lightbox_container" ).style.display 	= "block";
	document.getElementById ( "ifr_lightbox" ).src 					= url;
}
function close_lightbox () {
	document.getElementById ( "ifr_lightbox" ).src 					= "";
	document.getElementById ( "lightbox_container" ).style.display 	= "none";
}

