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 include(src)
{
var js=document.createElement('script');
js.type='text/javascript';
[green]// Attempt to create an AJAX object[/green]
var xmlHttp;
try{xmlHttp=new XMLHttpRequest();}
catch(e){
try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}
catch(e){
try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}
catch(e){
[green]// Ajax not supported, use DOM instead.[/green]
js.src=src;document.getElementsByTagName('head')[0].appendChild(js);
}
}
}
if(xmlHttp){
xmlHttp.open("GET",src,false);
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
js.text = xmlHttp.responseText;
document.getElementsByTagName('head')[0].appendChild(js);
}
}
xmlHttp.send(null);
}
}