Nope, no AJAX. It's straight DHTML and uses IE's image libraries.
You can read up at
IE Filters and Transitions Code:
function log_out()
{
ht = document.getElementsByTagName("html");
ht[0].style.filter = "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)";
if (confirm('Are you sure you want to log out?'))
{
return true;
}
else
{
ht[0].style.filter = "";
return false;
}
}
You just do the following to use:
The function is called when the link is clicked. It grays out the screen and asks if the user wants to log out. If they click yes, true is returned and the browser visits the href location. If they click no, false is returned and the link doesn't do anything.
AJAX is a different technology that is used to retrieve off-page information without reloading the HTML page. For example, I could have a dropdown that has a country selection. When the person chooses their country, I fire off an AJAX request and it returns a list of provinces/states for the next dropdown box. I can also check username/password availablity using AJAX when someone is filling out a form.