function ShowPopUp(galery_id){
    canScroll = false;
    frames['popupframe'].document.location = '/galery/view/id/' + galery_id;
    document.getElementById('popup_top').style.padding = '50px 0px 0px 0px';
    window.scrollTo(0,scroll_Y);
    return false;
}

function ShowPopUpForLinks(){
    canScroll = false;
    frames['popupframe'].document.location = '/link/add/';
    document.getElementById('popup_top').style.padding = '230px 0px 0px 0px';
    window.scrollTo(0,scroll_Y);
    return false;
}

function ShowPopUpForSend(id){
    canScroll = false;
    frames['popupframe'].document.location = '/index/send/id/' + id + '/';
    document.getElementById('popup_top').style.padding = '230px 0px 0px 0px';
    window.scrollTo(0,scroll_Y);
    return false;
}


function HidePopUp(){
    document.getElementById('popupdiv').style.width = '1px';
    document.getElementById('popupdiv').style.height = '1px';
    document.getElementById('popupdiv').style.left = '-10px';
    document.getElementById('popupdiv').style.top = '-10px';
    document.getElementById('popupdiv').style.overflow = 'hidden';
    canScroll = true;
}
var canScroll = true;
var scroll_Y = 0;
