window.onload = function(){
}

function showGallery(id){
    if(document.getElementById('Simpleviewer') == null){
        var flashvars = {
                xmlDataPath: "/ice/flickr/simpleviewer/"+userName+"/"+id
        };
        var params = {
                allowscriptaccess: 'always',
                wmode: 'transparent'
        };
        var attributes = {
                id:"Simpleviewer",
                name:"Simpleviewer"
        };
        swfobject.embedSWF("/swf/simpleviewer.swf", "gallery", "100%", "100%", "9.0.0", "/swf/expressInstall.swf", flashvars, params, attributes);
    }
    document.getElementById('galleryHolder').style.display = "block";
}

function hideGallery(){
    document.getElementById('galleryHolder').style.display = "none";
    document.getElementById('galleryHolder').innerHTML = '<div class="background"></div><div id="gallery"></div><a id="closeButton" onClick="hideGallery();"><span>close</span></a>';
}
