function CahngeColor(num,situation)
{
	if(situation==0)
		document.all["td" + num].style.backgroundColor="#6B9770";
	else
		document.all["td" + num].style.backgroundColor=''
}


var isW3C, isIE4, windowwidth;
// initializes on load to establish content objects
function initFlags() {

   if (document.images) {
      isW3C = (document.getElementById) ? true : false;
      isIE4 = (document.all) ? true : false;
   }

   if (!isW3C && !isIE4) {
       top.location.href = "noDHTMLpage.html";
   }
}

// Set event handler to initalize flags

window.onload = function()
{
initFlags();
}



function openDropdown(Dropdown) {



   var elem = (isW3C) ? document.getElementById(Dropdown) :
      ((isIE4) ? document.all(Dropdown) : null);
   if (elem) {
      elem.style.visibility = "visible";
  }
}

function closeDropdown(Dropdown) {
   var elem = (isW3C) ? document.getElementById(Dropdown) :
      ((isIE4) ? document.all(Dropdown) : null);
   if (elem) {
      elem.style.visibility = "hidden"; 
   }
}
