﻿// JScript File

//toggle the visibility of a div
function ToggleDiv(div_id)
{
    if(document.getElementById(div_id).style.visibility  == 'visible')
    {
        document.getElementById(div_id).style.visibility = 'hidden';
        document.getElementById(div_id).style.display = 'none';
    }
    else
    {
        document.getElementById(div_id).style.display = 'block';
        document.getElementById(div_id).style.visibility = 'visible';    
    }
}

function open_new_window(image_id) 
{
    new_window = open("dbimage.aspx?id=" + image_id,"Image","width=400,height=300,left=10,top=10,resizable=1,scrollbars=1"); 
}

// This is the function that will close the
// new window when the mouse is moved off the link
function close_window() 
{
    new_window.close();
}


