﻿<!--
// common javascript functions for use throughout the application

function JSConfirm(message)
{
    var ConfirmOK = confirm(message);
    return (ConfirmOK);
}

function JSOpenPrintWindow(WindowURL)
{
    var decs = "top=20,left=20,width=600,height=450,resizable=1,scrollbars=1";
    window.open(WindowURL, "printwindow", decs);
    return(false);
}

//-->

