function lightBoxSelect(linkurl) {

	// ---------------------------------------------------- //

	setId ="master"
	document.myform.set001.id ="master"
	document.myform.set001.options.length=0
	document.myform.set001.options[0] = new Option('', linkurl);

	// reset first!
	myFlashLightBoxInjector.reset();

	// loop all images
	$A($(setId).options).each(function(selElemOption, index) {
		myFlashLightBoxInjector.appendElement(selElemOption.value, selElemOption.text, setId + "_" + index, setId);
	});

	// updateImageList
	myFlashLightBoxInjector.updateImageList();

	// Launch Lightbox
	myFlashLightBoxInjector.start(setId + "_" + $(setId).selectedIndex);

}

function show(url) {
	var a = document.getElementById('dummyanchor');
	a.setAttribute('href',url);
	myLightbox.start(a);
}