var RecaptchaOptions = {
	theme : 'white',
	tabindex : 2
};
function SA_photo(n,c,ids) {
	var full ;
	var caption = document.getElementById('sa_photo_caption');
	var allids = ids.split(',');
	for ( i in allids ) {
		full = document.getElementById('sa_photo_full_'+allids[i]);
		if ( n != allids[i] ) {
			full.style.display = "none" ;
		} else {
			full.style.display = "" ;
			caption.innerHTML = c;
		}
	}
}
