<!--				
function PageRedirect(strPage, strTime)
{		
  setTimeout('window.location = "' + strPage + '"', strTime);
}
function swapimage(obj, image)
{
  // Want to set the new image...
  obj.src = image;
  return 1;
}	 
function MsgBox(tMsg)
{
  alert (tMsg);
}
function MsgOkCancel()
{
  return confirm('Are you sure?');
}

function change(frmSelect) 
{
  // makes form submit when combo box changes
  frmSelect.submit(); 
}
function toggle(toggleId, e)
{
 if (!e) {
  e = window.event;
 }
 if (!document.getElementById) {
  return false;
 }
 var body = document.getElementById(toggleId);
 if (!body) {
  return false;
 } 
 var im = toggleId + "_toggle";
 if (body.style.display == 'none') {
  body.style.display = 'block';
  if (document.images[im]) {
   document.images[im].src = "../_images/minus.png";
  }
 } else {
  body.style.display = 'none';
  if (document.images[im]) {
   document.images[im].src = "../_images/plus.png";
  }
 }
 if (e) {
  // Stop the event from propagating, which
  // would cause the regular HREF link to
  // be followed, ruining our hard work.
  e.cancelBubble = true;
  if (e.stopPropagation) {
   e.stopPropagation();
  }
 }
}

//-->