// site javascript

function doLogin() {
	document.forms.login.submit();
}

function SetAllCheckboxes(frmName, fieldName, checkValue)
{
    alert("test");
    if (!document.forms[frmName])
        return;
    var objCBox = document.forms[frmName].elements[fieldName];
    if (!objCBox)
        return;
    var countCB = objCBox.length;
    if (!countCB)
        objCBox.checked = checkValue;
    else
        for (var i = 0; i < countCB; i++)
            objCB[i].checked = checkValue;
}