﻿// ----------------------------------------------------
// Donations page handler functions
// created: Tue. 31-Jan-2006
// author: asaleh
// ----------------------------------------------------

//donations page functions

function displaySection(sectionName)
{        
    switch(sectionName)
    {
    case "contentsBTSOCHQ":      
      ShowDiv('contentsBTSOCHQ');
      HideDiv('contentsHelp');
      break;    
    case "contentsHelp":      
      HideDiv('contentsBTSOCHQ');
      ShowDiv('contentsHelp');
      break;   
    default:
      ShowDiv('contentsBTSOCHQ');
      HideDiv('contentsHelp');
    }
}

//donationForm functions

function formGoto(formSectionNo)
{        
    switch(formSectionNo)
    {
    case 0:
      HideFormTab('tab1');
      HideDiv('contentsOnlinePart2');
      ShowFormTab('tab0');
      ShowDiv('contentsOnlinePart1');
      break;
    case 1:
      HideFormTab('tab0');
      HideDiv('contentsOnlinePart1');
      ShowFormTab('tab1');
      ShowDiv('contentsOnlinePart2');
      break;
    }
}

//tblDonationFormPart1 functions

function IsSpecifyTitleRequired()
{
    if ( document.getElementById('selectTitle').value == 'Other' )
    {
        ShowDiv('hiddenfields1');
    }
    else
    {
        HideDiv('hiddenfields1');
    }      
}

//general purpose functions

function ShowFormTab(divName)
{
    document.getElementById(divName).style.borderTop = 'solid 1px #F87412';
    document.getElementById(divName).style.borderRight = 'solid 1px #F87412';
    document.getElementById(divName).style.borderLeft = 'solid 1px #F87412';
    document.getElementById(divName).style.background = 'url(../images/DonationsTAB_Background_ON_v1.jpg) repeat';
}

function HideFormTab(divName)
{
    document.getElementById(divName).style.borderTop = 'solid 1px #666';
    document.getElementById(divName).style.borderRight = 'solid 1px #666';
    document.getElementById(divName).style.borderLeft = 'solid 1px #666';
    document.getElementById(divName).style.background = 'url(../images/DonationsTAB_Background_OFF_v1.jpg) repeat';
}

function ShowDiv(divName)
{
    document.getElementById(divName).style.display = 'block';
}

function HideDiv(divName)
{
    document.getElementById(divName).style.display = 'none';
}