/*	This file contains two functions.  When anyone changes any of the Textfields
	on the template, These functions are called.  They Display an error and reset
   the template.
*/


// Stops People from changing the Number Fields.
function ButtonsPlease(EVIL)
   {
//   alert("Please Use Only The + and - Buttons.\n\n Now Resetting Template.");
   alert("Illeagal User Input.\n\n Now Resetting Template.");
   window.document.PSTPChars.reset();
   }

// Stops People from changing the Text Field.
function NoTextPlease(EVIL2)
   {
//   alert("Please Don't Modify The Skils Section.\n\n Now Resetting Template.");
   alert("Illeagal User Input.\n\n Now Resetting Template.");
   window.document.PSTPChars.reset();
   }
