function myprop(id) {
  location = "myprop.php?id="+id;
}

function showPhotos(id, photo, count, a) {
  var url = "photos.php?id="+id+"&n="+photo+"&c="+count;
  if (a != 0)
    url = url + "&a="+a;
  window.open(url, "photo", "left=50,top=50,width=665,height=525,status=0,resizable=1,menubar=0,titlebar=0,toolbar=0,scrollbars=yes", true);
}

