$(document).ready(function() {
  $(".smallImgLink").bind("click", function() {
    vSightId = $(this).attr('sid');
    vImgIdx = $(this).attr('idx');
    vHrefPart = $(this).attr('h');

    vVSize = $(this).attr('vsize');
    vHSize = $(this).attr('hsize');
    if (!vHSize) {
      vHSize = 860;
    }
    if (!vVSize) {
      vVSize = 746;
    }

    window.open(vHrefPart + vSightId + '.html?idx=' + vImgIdx, 'Gallery' + vSightId, 'width=' + vHSize + ',height=' + vVSize + ',resizable=no');
    return false;
  });
});
