// JScript File
//---------------------------------------------------------------------------
//changeToGreen
//---------------------------------------------------------------------------
function changeToGreen(txt)
  {
    txt.style.background="#99FF67";
  }
//---------------------------------------------------------------------------
//
//---------------------------------------------------------------------------
  function changeToWhite(txt)
  {
    txt.style.background="white";
  }
//---------------------------------------------------------------------------
//
//---------------------------------------------------------------------------
  function showCalender(t)
     {
       eval(t).style.display = "";
     }
//---------------------------------------------------------------------------
//
//---------------------------------------------------------------------------
  function hideCalender(t)
     {
       eval(t).style.display = "none";
     }
//---------------------------------------------------------------------------
//
//---------------------------------------------------------------------------
   function cmbChange(cmb , period)
    {
      if (cmb.options[cmb.selectedIndex].value == -1)
      {
        checkElement(period).style.display = "";
      }
      else
      {
        checkElement(period).style.display = "none";
      }
    }
//---------------------------------------------------------------------------
//printPage
//---------------------------------------------------------------------------
function printPage(stPage,stAttributes)
{
  window.open (stPage ,"_blank",stAttributes)
}
