﻿//function ToggleVertical()
//{
//    $('ctl00_divMainContainer').setAttribute('class','mainContainerGalleryVertical');
//    $('ctl00_divContent').setAttribute('class','contentContainerGalleryVertical');
//    $('ctl00_ContentPlaceHolder1_divLargeViewHolder').setAttribute('class','galleryLargeHolderVertical');
//}

//function ToggleHorizontal()
//{
//    $('ctl00_divMainContainer').setAttribute('class','mainContainerGalleryHorizontal');
//    $('ctl00_divContent').setAttribute('class','contentContainerGalleryHorizontal');
//    $('ctl00_ContentPlaceHolder1_divLargeViewHolder').setAttribute('class','galleryLargeHolderHorizontal');
//}

//function SetImage(imgHolderControlID, imgPath)
//{
//    $(imgHolderControlID).setAttribute('src', imgPath);
//}


function OpenNewWindow(width, height, imgPath)
{
    var win = new Window({className: "alphacube", width: width + 5, height: height + 5, zIndex: 100, resizable: true, title: "Gallery Image", showEffect:Effect.BlindDown, hideEffect: Effect.SwitchOff, draggable:true, wiredDrag: true});
    win.getContent().innerHTML= "<div class='popup'><img src='" + imgPath + "' alt=''/></div>"; 
    win.setStatusBar("Gallery Image"); 
    win.showCenter(false, null, "left");
}