function photo (which) {
	if (document.getElementById) {
		document.getElementById('screenshot').src = which.href;
		return false;
	}
}

function photo2 (which) {
	if (document.getElementById) {
		document.getElementById('screenshot2').src = which.href;
		return false;
	}
}

function photo3 (which) {
	if (document.getElementById) {
		document.getElementById('screenshot3').src = which.href;
		return false;
	}
}


function privacy( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if ((target.style.display == "none")||(target.style.display == "")){
  				target.style.display = "inline";
  			} else {
  				target.style.display = "none";
  			}
  	}
}
