Вот что имеем
<script type="text/javascript">
function fulltime ()
{
var get_input = document.getElementById('get')
var give_input = document.getElementById('give')
if (get_input>0)
{
give_input.value=get_input+10;
}
setTimeout('fulltime()',10);
}
</script>
<input type="text" name="get" id="get" value="0" />
<input type="text" name="give" id="give" value="0" />
<script language="JavaScript">fulltime();</script>
ведь по идеи пишим 5 в поле get и должны получить 15 в поле give, но что-то не так, подскажите