Countdown Clock for website

Basically I want to add a 30 second countdown timer to my site. Is there anyway to do it as well as add css to it? And if possible a pop up happens when the time runs out.

Here you can see what I have but it just doesnt look right.

http://wolphewebdesign.com/Clients/schroe222/

Any help would be very appreciated.

Style the div the time is in (#timer) as you did the rest of the page

Where you have the alert() call to pop up the dialog, replace that with whatever you want to happen when the time runs out. Use window.open() to open a new window. To do an overlay type thing (a div that floats on top of the page), first create the overlay in your HTML as normal, then set its style to display:none. Have your javascript change that to display:block to show it.