
/**
 *  Live Pictures...
 */

function deleteLivePicture(siteUrl, pictureId)
{
    $.ajax({ 
        url: siteUrl,
        type: "GET",
        dataType: "text",
        success: function(data){
            if (data == "OK") {
                removeLivePicture(pictureId);
            }
        }
    });
}
    
function removeLivePicture(pictureId) {        
    $('#livePicT_' + pictureId).fadeOut();
    $('#livePic_' + pictureId).fadeOut();        
}

////////////////////////////////////////////////////////////////////////////////////

/*
 *  Shows a preview image to the given gallery...
 */
function showPreviewImage(galleryId, elementId) {
    var div = $(elementId);
// load preview image
}

function alterTab( tabId, imgId, forceOpen )
{
    alterVisible( tabId, forceOpen );
        
    var img = $(imgId);
    var tab = $(tabId);
        
    if( tab.style.display == "none" )
    {
        img.src = "/images/icons/up.gif"
    }
    else
    {
                
        img.src = "/images/icons/down.gif"
    }
    return true;
}

function alterVisible( tabId, forceOpen )
{
    var tab = $(tabId);
    if( tab.style.display == "none" || forceOpen == true )
    {
        Effect.BlindDown(tabId);
    }
    else 
    {
        Effect.BlindUp(tabId);
    }
}

function openWindow( url, name )
{
    window.open( url, name );
}
