﻿
function openSlideShow(galleryID) {
    var wnd = radopen("slideshow.aspx?galleryID=" + galleryID, "gallerywnd");
    wnd.setSize(300, 75);
    wnd.center();
    wnd.set_modal(true);
    return false;
}

function slideShow(galleryID) {
//    var opt = 'status=0,toolbars=0,scrollbars=1,width=10,height=10';
//    window.open(baseUrl + 'slideshow.aspx?galleryID=' + galleryID, 'gallery', opt);

    var wnd = radopen("slideshow.aspx?galleryID=" + galleryID, "gallerywnd");
    wnd.setSize(660, 820);
    wnd.center();
    wnd.set_modal(true);    
    return false;
}
function popImage(imageID) {
//    var opt = 'status=0,toolbars=0,scrollbars=1,width=10,height=10';
//    window.open(baseUrl + 'slideshow.aspx?imageID=' + imageID, 'gallery', opt);
//    return false;

    var wnd = radopen("slideshow.aspx?imageID=" + imageID, "gallerywnd");
    wnd.setSize(660, 820);
    wnd.center();
    wnd.set_modal(true);
    return false;

}


