﻿// JScript File

function PopupPhoto(Path,Id,ImageCount,Lang){
    var CompletePath = Path + "?id="+Id+"&Cnt="+ImageCount+"&lang="+Lang;
    WinHandle=window.open(CompletePath,'Enchoro',config='toolbar=no,menubar=no,location=yes,directories=no,status=yes,screenX=50,screenY=0,left=50,top=0');    
    WinHandle.focus();
}

function ResizeProper(){
    var NetForm =document.getElementById("DescriptionPanel");
    var ToHideHorizontalBar =document.getElementById("ToHideHorizontalBar");
    var OverflowPanel=document.getElementById("OverflowPanel");
    var NewHeight=document.documentElement.clientHeight-630;
    
    if ((NewHeight>100)){
        NetForm.style.height=NewHeight+'px';
        ToHideHorizontalBar.style.height=(NewHeight-2)+'px';
        
    }
    else{
    
        OverflowPanel.style.overflow='visible';    
        
    }
}