Remove Characters in Date/Time document.write script

I have searched for various ways to remove 23:59:59 GMT-0400 (EDT) from a Javascript function I am trying to run. I just want to display Tue Apr 30 2013 (for example). Here is what I have so far...\[code\]<script type="text/javascript"> var now = new Date(); document.write(new Date(now.getFullYear(), now.getMonth() + 1, 0, 23, 59, 59));</script>\[/code\]Which outputs...Tue Apr 30 2013 23:59:59 GMT-0400 (EDT)Any help would be great! Thanks!
 
Top