// JavaScript Document
function OpenZoom (c) {
    window.open(c,
                        'zoom',
                        'width=660,height=600,scrollbars=yes,resize=yes');
}

function OpenPano (c) {
   window.open(c,
                        'pano',
                        'width=560,height=600,scrollbars=yes,resize=yes');
}