Хочу сделать изменение цвета тени по нажатию кнопки. Но никак не могу допереть. Может функцией? Объектной модели нет у этих стилей. <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=windows-1251"/> <style type="text/css"> #hw { position: absolute; left: 120px; top: 50px; text-shadow: 2px 2px; color: red; font: 30px impact; } #but { position: absolute; left: 120px; top: 100px; } </style> </head> <body> <div id="hw">Hello world</div> <div id="but"> <table> <tr> <td> <input id="ct" type="text" size="7"/> </td> <td> <input id="cs" type="text" size="7"/> </td> </tr> <tr> <td> <input type="button" value="Цвет текста" name="t" onClick="document.getElementById('hw').style.color=document.getElementById('ct').value;"/> </td> <td> <input type="button" value="Цвет тени" name="s" onClick="document.getElementById('hw').style.text-shadow=document.getElementById('cs').value;"/> </td> </tr> </table> </div> <script language="javascript" type="text/javascript"> /*function sc() { }*/ </script> </body> </html>