function OpenPhotogalleryFromPulldown(form,section) {
 	var index = eval("document." + form + "." + section + ".selectedIndex");
	var path = eval("document." + form + "." + section + ".options[" + index + "].value");
	if((path) && (path != "nothing")){
		document.location.href = path;
	}
}
