﻿// Flag Variables
var bForceUnLoadPostback = false;
var isCCS, isIE6, isNN7;

//****************************************************************************
// Method to determine the type of browser
function initDHTMLAPI()
{
  if (document.images)
  {
    isCCS = (document.body && document.body.style) ? true : false;
    isIE6 = (isCCS && document.all) ? true : false;
    isNN7 = (isIE6) ? false : true;
  }
}

//*****************************************************************************
// Called when the page is loaded
function OnLoad()
{
  initDHTMLAPI();
  
  var oContact = document.getElementById('SubmitContact');
  if (oContact != null)
    if (oContact.getAttribute('EmailSent') != null)
      alert(oContact.getAttribute('EmailSent'));
}