/*** PICTURE POPPER ***/
function openPicture(path,index,reverse)
{
    var path = "./pic.php?pic="+path+"&show="+index;
    if (reverse) path += "&rev=true";
    window.open (path,'Gallery',config='resizable=yes,scrollbars=yes,menubar=no,toolbar=no,status=yes,location=no,width=500,height=400');
    return false;
}


/*** RESIZE WINDOW ***/
function resizeWindow(w,h)
{
    top.window.resizeTo(w,h);
}

