File: /var/www/vhosts/onlinedev.com/httpdocs/admin/include/global.js
//Tabs menu
function tab(nr){
for (i = 1; i < 6; i++)
{
if (nr == i)
{
document.getElementById("menu" + i).className = "on";
document.getElementById("sub" + i).style.display = "";
}
else
{
document.getElementById("menu" + i).className="";
//document.getElementById("menu" + i).className="menu" + i;
document.getElementById("sub" + i).style.display = "none";
}
}
}
//Chaeck all / Uncheck all
function checkAll(field){
for (i = 0; i < field.length; i++)
field[i].checked = true ;
}
function uncheckAll(field){
for (i = 0; i < field.length; i++)
field[i].checked = false ;
}