
  function loadPhoto(photo) {

	var string = "";
	string += '<img src="images/' + photo + '" border="0" alt="" title="" />';

	document.getElementById('foto').innerHTML = string;

   }

   ///

  function ShowPhoto(url) {
	
	window.open('preview.php?image=' + url,'prewview','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
  }

