   function goTo(url) {
         var a = document.createElement("a");
         if(!a.click) { //only IE has this (at the moment);
            window.location = url;
            return;
         } else {
            a.setAttribute("href", url);
            a.style.display = "none";
			
         if (!document.getElementsByTagName("body")[0].append) 
            document.getElementsByTagName("body")[0].appendChild(a);
         else
            document.getElementsByTagName("body")[0].append(a);

         a.click();
      }
   }

