function gosee(pass)
{ window.open(pass)
}

function sethome()
{  window.focus()
   detectscreen()
   detectpage()
   var fwidth=myWidth*.95
   fwidth=parseInt(fwidth)
   var fheight=myHeight*.95
   fheight=parseInt(fheight)
   var ta="<iframe src=\""
   var tb="\" width="+fwidth+" height="+fheight+" frameborder=\"0\"></iframe>"
   var theframe=ta+mypage+tb
   document.getElementById('toparea').innerHTML = theframe
   var theframe="<iframe src=\"news.html?home\" frameborder=\"0\" width=1000 height=750></iframe>"
//   document.getElementById('botarea').innerHTML = theframe
}

function detectpage()
{  mypage="./intro/gpphm.html"
}

function detectscreen()
{
   if (navigator.appName.indexOf("Microsoft")!=-1)
   {  
      var ok=confirm("This web site works best with Mozilla Firefox\n\nSome functions and features may not work with Internet Explorer\n\nClick OK to install Mozilla Firefox from the Mozilla web site\nClick CANCEL to continue with Internet Explorer")
      if (ok)
      {  location.replace("firefox.html")
         goon=false
      }
      myWidth=1100
      myHeight=800
   }  else
   {  if (typeof(window.innerWidth)=='number')
      {  myWidth = window.innerWidth
         myHeight = window.innerHeight
      }  else 
      {  if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight))
         {  myWidth = document.documentElement.clientWidth
            myHeight = document.documentElement.clientHeight
         }  else
         {  if (document.body && (document.body.clientWidth || document.body.clientHeight))
            {  myWidth = document.body.clientWidth
               myHeight = document.body.clientHeight
            }
         }
      }
   }
}

var myWidth=0
var myHeight=0
var mypage=""