﻿
//scripts 

    function ToggleDiv() {
        obj1 = document.getElementById('divdisclaimer');
        if (obj1.style.display == "") {
            obj1.style.display = "none";
        }
        else {
            obj1.style.display = "";
            window.location.href = "#anchor";
        }
    }

    function alertConsult() 
    {
        alert('Thank you for your inquiry. An attorney will respond shortly. If you need immediate assistance, please call 412.802.6666. Thank you and have a great day.');
    }

    function swapBanner(img) 
    {
        document.getElementById("imgMap").src = img;
    }

    function emailPage() {
        window.open("email.aspx?PID=" + document.getElementById('lblPID').innerText, "Email", "width=460, height=340, toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=no,copyhistory=yes,resizable=no")
    }

    function printPage() {
        window.open("print.aspx?PID=" + document.getElementById('lblPID').innerText, "Print", "width=700, height=800, toolbar=yes,location=no,directories=no,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes")
    }