﻿// JScript File

window.onunload = lastChance;

Event.observe(document.body, 'click', function(event) {
    //alert(Event.element(event).tagName);
    switch(Event.element(event).tagName)
    {
        case "A":
        case "DIV":
        case "IMG":
        case "SPAN":
        case "P":
        case "INPUT":
            showPopup = false;
            break;
    }
});
 
function lastChance()
{
    if(showPopup)
    {
        //window.open('/LastChance.aspx','','width=530,height=600,menubar=0,resizeable=0,status=0,scrollbars=1,resizable=0');        
    }
}