Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
...
if (document.all || document.layers) { self.moveTo(0,0); self.resizeTo(screen.availWidth,screen.availHeight)}
...
<script>
function yourOpener(yourURL)
{
myWidth = screen.availWidth;
myHeight = screen.availHeight;
yourFeatures = "top=0,left=0,width="+myWidth+",height="+myHeight
myHandle = window.open(yourURL,"yourName",yourFeatures)
}
</script>