The layout is nice, clean and professional. The code, on the other hand, needs help. Don't use tables for layout, even for forms. It's not what they were meant for, bloats your code, makes it harder for search engines to index the page, and makes structural changes a royal pain. Forms are actually pretty easy to style using standard, semantic code.
Move your CSS and JScript to external files. Again, more bloated code.
Your page has a body nested within a body. Not sure why that is, but it couldn't have been on purpose.
Move
<link rel="stylesheet" type="text/css" href="/css/wowwindow.css" />
within the head tags.
Also, if you MUST have CSS within style tags, place that in the head as well.