/* see http://www.infoworld.com/d/developer-world/how-make-your-website-mobile-today-833?page=0,3 */
function resetPage() {
   var classVal = (Math.abs(window.orientation)==90) ? "landscape" : "portrait";
   document.getElementById("container").setAttribute("class", classVal);
   setTimeout(function() { window.scrollTo(0,1);},100);
}
function androidSS() {
   if (navigator.userAgent.match(/Android/i)) {
  var fileref = document.createElement("link");
   fileref.setAttribute("rel","stylesheet");
   fileref.setAttribute("type","text/css");
   fileref.setAttribute("href","mobile3.css");
   document.getElementsByTagName("head")[0].appendChild(fileref);
    }
}

