// home page tab kit

var lastId = 4;
function selectHmTab(id){
if (lastId > 0) {
document.getElementById('tabbar').className = 'hmtab' + lastId;
document.getElementById('tabcontent' + lastId).style.display='none';
}
document.getElementById('tabbar').className = 'hmtab' + id;
document.getElementById('tabcontent' + id).style.display='block';
lastId = id;
}

// opening apps in new window

function open_app(app_in) 
{
    window.open('https://'+location.host+app_in);
}

