﻿// JScript File

function ShowDiv(p_show, p_hide)
{
    if (document.getElementById(p_show))
    {
        document.getElementById(p_show).style.display = 'block';
    }
    if (document.getElementById(p_hide))
    {
        document.getElementById(p_hide).style.display = 'none';
    }
}

function SwapMain(p_imageId, p_imagePath, p_caption)
{
    if (document.getElementById(p_imageId))
    {
        document.getElementById(p_imageId).src = p_imagePath;
        document.getElementById(p_imageId).alt = p_caption;
    }
}

function ShowFullSize()
{
    if (document.getElementById('ctl00_MainContent_MainImage'))
    {
        var x = window.open('ShowImage.aspx?'+document.getElementById('ctl00_MainContent_MainImage').src.replace(/thumbs\/350_/,''),'','toolbars=no,resizable=yes');
    }
}

function PrintPage()
{
    var x = window.open(document.location.href.replace('Details', 'PrintPage'),'','width=600px,height=800px,resizable=yes,toolbars=no');
}