function DateTimeInput($prefix)
 {
     $values = array('_Date_Year' => 'IntInput', '_Date_Month' => 'IntInput', '_Date_Day' => 'IntInput', '_Time_Hour' => 'IntInput', '_Time_Minute' => 'IntInput');
     parent::MultipleInput($prefix, $values);
 }
 function PasswordNewInput($name)
 {
     parent::MultipleInput($name, array('1' => 'StringInput', '2' => 'StringInput'));
 }