Okay, heres the glow and shadow stuff. This is what I use on my forums. I've gotten them to both work within the same div.
HTML Code:
Shadow
<div style="width:100%; color:white; filter:shadow(color=red, direction=225);height=1px"> Shadow</div>
HTML Code:
Glow
<div style="width:100%; color:white; filter:glow(color=red, direction=225);height=1px"> Glow</div>
HTML Code:
Shadow and Glow in same div
<div style="width:100%; color:white; filter:glow(color=red, direction=225)shadow(color=blue, direction=225);height=1px"> Glow and Shadow</div>