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.
function printImage(imgSrc){
var imgWin=window.open();
imgWin.document.write("<html><body><img src='");
imgWin.document.write(imgSrc);
imgWin.document.write("'></body></html>");
imgWin.document.close();
imgWin.focus();
imgWin.print();
imgWin.close();
}