You are annoyed by the strange behavior if IE 6 ? I'm sure you are. Let;s take a look to the latest strange thing that i found. For some crazy reason, IE 6's javascript engine doesn't want to redirect me to a new URL by simply changing the window.location or window.location.href properties:
var newUrl = "http://someurl/";
//Those will not work
window.location = newUrl;
window.location.href = newUrl;
But(surprise), the following code which is stupid and shouldn't make a difference do the work!
var newUrl = "http://someurl/";
setTimeout(function()
{
window.location = newUrl;
}, 0);