﻿// JScript File
      <!--
      function isNumberKey(evt)
      {
         var charCode = (evt.which) ? evt.which : event.keyCode
         if (charCode > 31 && (charCode < 48 || charCode > 57))
            return false;

         return true;

      }
      
function poptastic(url)
{
	newwindow=window.open(url,'name','height=400,width=200,toolbar=no,menubar=no,location=no');
	if (window.focus) {newwindow.focus()}
}      
      //-->


