Or, if you happen to get lucky enough to have a server that allows PHP to chmod files you can do this...
<?PHP
chmod ("file.htm", 0755);
?>
This will CHMOD file.htm to 755 (if file.htm is in the same directory as this PHP script.) Otherwise, you will need a ftp program...