/**/

var current_id = 0;

function setBorderColor(id,bcolor){

   if(current_id != id){
    
        var thumb = document.getElementById('thumbnail-'+id);
        thumb.style.borderColor=bcolor;
   }
}


function showDetail(id,img_container_id,img_tag,title_container_id,title){

    if(current_id != id){
        var thumb = document.getElementById('thumbnail-'+id);
        var imgContainer = document.getElementById(img_container_id);
        var titleContainer = document.getElementById(title_container_id);
    
        var last_thumb = document.getElementById('thumbnail-'+current_id);
        
        last_thumb.style.borderColor='#c0c0c0';
        thumb.style.borderColor='maroon';
        current_id = id;
        
        titleContainer.innerHTML = title;
        imgContainer.innerHTML = img_tag;
    }
}

function OpenPatternsSlideshow(page,cat_id,pattern_id){

    window.open("http://" + location.hostname + "/slideshow.php?pg=" + page + "&c=" + cat_id + "&p=" + pattern_id, "patterns_slideshow_" + pattern_id, "location=0,toolbar=0,directories=0,menubar=0,status=0,width=820,resizable=0,scrollbars=1,left=100,top=50");
    
    return false;
}




function OpenGallerySlideshow(page,sitting_suite_id,img_id){

    window.open("http://" + location.hostname + "/slideshow.php?pg=" + page + "&s=" + sitting_suite_id + "&p=" + img_id, "gallery_slideshow_" + img_id, "location=0,toolbar=0,directories=0,menubar=0,status=0,width=700,resizable=0,scrollbars=1,left=100,top=50");

    return false;
}

function OpenReferenciesSlideshow(page,ref_id,img_id){

    window.open("http://" + location.hostname + "/slideshow.php?pg=" + page + "&r=" + ref_id + "&p=" + img_id, "referencies_slideshow_" + img_id, "location=0,toolbar=0,directories=0,menubar=0,status=0,width=820,resizable=0,scrollbars=1,left=100,top=50");

    return false;
}

/********************/

function showPicture(id,img_container_id,img_tag){

    if(current_id != id){
        var thumb = document.getElementById('thumbnail-'+id);
        var imgContainer = document.getElementById(img_container_id);
       

        var last_thumb = document.getElementById('thumbnail-'+current_id);

        last_thumb.style.borderColor='#c0c0c0';
        thumb.style.borderColor='maroon';
        current_id = id;

        imgContainer.innerHTML = img_tag;
    }
}















