I'm assuming you mean make the taskbar button change color or flash? What you can do is use some javascript to focus the window, which will attempt to bring the window to the front. Most of the time this will fail, but it WILL cause the task bar button to flash.
The code you want should be :
<script language="javascript">
window.focus();
</script>