/**
 * (admin.js) Part of Portal Builder distribution files
 * Copyright 2010 Notorious Solutions Ltd. All Rights Reserved.
 * Unauthorized distribution, copying, modification, etc... in parts or in whole
 * is strictly forbidden without written permission from Notorious Solutions Ltd.
 * More information on www.notorious-solutions.com
 *
 * This file may only be used with the website/s designed with Portal Builder by Notorious Solutions Ltd.
 *
 * Last Modification Date: 2010-04-29
 * Last Modified By: AnGeL
**/

var checked = false;

function checkUncheckAll()
{
    var itsForm = document.getElementById("editForm");
    var i = 0;
    if(checked == false)
        checked = true;
    else checked = false;
    for(i = 0; i < itsForm.length; i++)
    {
        if(itsForm[i].type == 'checkbox' && itsForm[i].name != 'checkall')
        {
                itsForm[i].checked = checked;
        }
    }
}

function connectedChanged(dropdown)
{
    window.location += '&id='+dropdown.value;
}
