/*******************************************************************
Exit Offer Pro     Copyright (C) 2009 Catalin Ionescu http://www.ExitOfferPro.com

This is copyrighted software licensed under a commercial license. Copying is prohibited.
Go to http://www.ExitOfferPro.com to get your own copy now.
********************************************************************/

var shouldPopUp = true;
window.onbeforeunload = displayExitPopup;

function displayExitOffer() {
	document.body.innerHTML = '<div id="ExitOfferFrame" style="width: 100%; height: 100%; position: absolute; left: 0px; top: 0px"><iframe id="ExitOffer" src="' + offerExitHTML + '" style="width: 100%; height: 100%; border: none;" frameborder="0"></iframe></div>';
}


function displayExitPopup() {
	if (shouldPopUp == true) {
		shouldPopUp = false;
		if (offerShowCancelHTML) {
			document.body.innerHTML = '<div id="ExitTeaserFrame" style="width: 100%; height: 100%; position: absolute; left: 0px; top: 0px"><iframe id="ExitTeaser" src="' + offerCancelHTML + '" style="width: 100%; height: 100%; border: none" frameborder="0"></iframe></div>';
			ifrId = document.getElementById('ExitTeaserFrame');
			ifrId.onmouseover = displayExitOffer;
		} else {
			displayExitOffer();
		}
		document.body.style.overflow = "hidden";
		return offerTeaserMsg; 
	}
}


function fDisallowPopDisplay() {
	shouldPopUp = false;
}


var a = document.getElementsByTagName('a');
for (var i = 0; i < a.length; i++) {
	if (typeof a[i].onclick != 'function') {
		a[i].onclick = fDisallowPopDisplay; 
	}
}


var f = document.getElementsByTagName('form');
for (var i=0;i<f.length;i++) {
	if (typeof f[i].onclick != 'function') {
		f[i].onclick = fDisallowPopDisplay; 
	} else
	if (typeof f[i].onsubmit != 'function') {
		f[i].onsubmit = fDisallowPopDisplay; 
	}
}
