﻿function PageColor() {

  switch (ThePageID){
    case "1":
       TheBackgroundColor = "#477AA9";
       break;
    case "2":
       TheBackgroundColor = "#003535";
       break;
    case "3":
       TheBackgroundColor = "#333333";
       break;
    case "5":
       TheBackgroundColor = "#005782";
       break;
    case "6":
      TheBackgroundColor = "#E2EBF3";
      break;
    case "7":
       TheBackgroundColor = "#284862";
       break;
    case "12":
       TheBackgroundColor = "#FFFFFF";
       break;
    case "13":
       TheBackgroundColor = "#477AA9";
       break;
    case "14":
       TheBackgroundColor = "#003535";
       break;
    case "15":
       TheBackgroundColor = "#333333";
       break;
    case "17":
       TheBackgroundColor = "#005782";
       break;
    case "18":
       TheBackgroundColor = "#E2EBF3";
       break;
    case "19":
       TheBackgroundColor = "#284862";
       break;
    case "24":
       TheBackgroundColor = "#FFFFFF";
       break;
     case "25":
       TheBackgroundColor = "#477AA9";
       break;
    case "26":
       TheBackgroundColor = "#003535";
       break;
    case "27":
       TheBackgroundColor = "#333333";
       break;
    case "29":
       TheBackgroundColor = "#005782";
       break;
    case "30":
      TheBackgroundColor = "#E2EBF3";
      break;
    case "31":
      TheBackgroundColor = "#284862";
      break;
    case "36":
       TheBackgroundColor = "#FFFFFF";
       break;
    case "41":
      TheBackgroundColor = "#FFFFFF";
      break;
    default:
      TheBackgroundColor = "#000000";
  }

  document.getElementById('Content').style.backgroundColor = TheBackgroundColor;
  if(TheBackgroundColor == "#FFFFFF") {
    document.getElementById('Content').style.color = '#666666';
  }
}
