/*
    © 2003 Verity, Inc. All rights reserved. Verity®, KeyView® are trademarks of
    Verity, Inc. in the USA and numerous other countries. All other marks or
    symbols are those of their respective owners. This software is licensed, not
    sold, and is subject to worldwide copyright laws and the terms of the Verity,
    Inc. software license agreement contained in this package.
 *
 * File: parametric.js
 *
 * Javascript for Verity K2 Enterprise Web Sample Templates - Parametric Selection
 *
 * Depends upon:
 *      forms.js
 */

// Form validation (currently no validation required) and submital function
function formCheck(frm) {
  frm.submit();
}

// This function is called by the onchange() event for the PI drop down
// selector as well by the reset button.
function resetPi(frm) {
    location.href = frm.action + "?PiAlias=" + getValue(frm.PiAlias) + "&Reload=true";
}


