﻿//-----------------------------------------------------------------------------
// <description>
//    This file contains the javascript function that initiates print function 
//    on click event.
// </description>
// <author>Vertex Seattle</author>
// <created>09/28/2010</created>
// <updatelog>
// Date         Developer       Description
//-----------------------------------------------------------------------------
// 12/08/2021   John Doe        Sample
// </updatelog>
//-----------------------------------------------------------------------------
$(document).ready(function () {
    $("#printHeaderLinks").click(function () {
        PrintVersion();
        return false;
    });
});
