<!-- //

  function changePage(newLoc)
  {
    nextPage = newLoc.options[newLoc.selectedIndex].value
    if (nextPage != "")
    {
      document.location.href = nextPage
    }
  }
 
  function openWin(URL) 
  {
    day = new Date();
    id = day.getTime();
    eval("page" + id + " = window.open(URL,'" + id +"','toolbar=0,scrollbars=1,location=0,statusbars=0,menubar=0,resizable=1,width=350,height=480,left=200,top=50');");
  }

  function isNumbersType(value)
  {
    var digit='0123456789';
    var k;
    k = document.all?parseInt(value.keyCode): parseInt(value.which);
    return (digit.indexOf(String.fromCharCode(k))!=-1);
  }

  function isNumbersPaste(value)
  {
    return str.replace(/[^0-9]/gi,"");
  }
  //-->