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.
var window_width = 500;
var window_height = 500;
function open_window()
{
var left = (screen.width-(window_width+20))/2;
var top = (screen.height-(window_height+20))/2;
msg=window.open("newpage.html", "msg", "height="+window_height+",width="+window_width+",left="+left+",top="+top+",scrollbars=yes");
}