SUCCESS, I got it working. Whoopeee. 
John, I added +1 to the code and it works for my desired time to "disable" 5am.
EDIT - I also added an '=' sign after the 5 as I seen this in your new code!!!!
I have set it to "enable" again at 10am when the sun is further west out of view.
Here is what your code looks like john that works for me...
Code:
<input id="up_button" type="button" value="UP" onclick="setVariable('move=1')">
<script type="text/javascript" defer="defer">
<!--
var UTC_hours = new Date().getUTCHours() + 1;
if(UTC_hours >= 5 && UTC_hours < 10)
document.getElementById('up_button').disabled = true;
// -->
</script>
Also, I have manipulated the code to do the "CENTER" button too and that works also...yipeee....
Code:
<input id="center_button" type="button" value="CENTER" onclick="setVariable('move=1')">
<script type="text/javascript" defer="defer">
<!--
var UTC_hours = new Date().getUTCHours() + 1;
if(UTC_hours >= 5 && UTC_hours < 10)
document.getElementById('center_button').disabled = true;
// -->
</script>
So at 5am both "UP" & "CENTER" buttons will disable, then at 10am both enable.....great.
I adjusted my PC clock to check both works.
I'm very happy with this....thanks very much John 
A very happy NairB
Bookmarks