I am trying to do a redirect in javascript by setting the location object to a passed in URL. It doesn't seem to work in Zope and has always worked in JSP or any other HTML file. Is there any zope restriction prohibiting this code to work? Any suggestions for a workaround? My function: (shows the confirm window, but then does not redirect after I answer 'Yes') function confirmDelete(code, url) { var resp = window.confirm("Delete item " + code + "?"); if (resp) { location.href=unescape(url); /** also tried location=unescape(url); and document.location=unescape(url) but didn't work **/ } } Thank you. Karen --------------------------------- Do you Yahoo!? Faith Hill - Exclusive Performances, Videos, & more faith.yahoo.com