﻿var addthis_config = {"data_track_clickback":true}
function showHideBlock(blockID) 
{
    var block = document.getElementById(blockID);
    if (block.style.display == 'none')
        block.style.display = 'block';
    else
        block.style.display = 'none';
}
function selectAll(dropDownListID)
    {
        var chkBoxList = document.getElementById(dropDownListID);
        var chkBoxs= chkBoxList.getElementsByTagName("input");
            
        for(var i=0;i<chkBoxs.length;i++)
            chkBoxs[i].checked = true;
    }
function OpenCenteredPopup(page, name, width, height, scroll)
{
    var leftPosition = (screen.width) ? (screen.width-width)/2 : 0;
    var topPosition = (screen.height) ? (screen.height-height)/2 : 0;
    settings = 'location=no,height='+height+',width='+width+',top='+topPosition+',left='+leftPosition+',scrollbars='+scroll+',resizable';
    window.open(page, name, settings);
}

