Javascript to redirect to a page with ‘&’ arguments

Use unescape(“%26”) to put an ampersand (&) in redirection URLs with javascript…

<script type=”text/javascript”>
var myURL = “http://del.icio.us/cwilmire?setcount=100” + unescape(“%26”) + “settagview=cloud”;
window.location = myURL;
</script>