
/*	if (getDocCookie("suggestshowed") == null)
	{
		window.onbeforeunload = function() 
		{
			if (confirm('===== SAVE 25%! =====\n\nUse promotional code MORELEADS while ordering leads\nand get 25% more leads on top of your order FREE!\n\nClick OK to have FREE leads.'))
			{
				setDocCookie("suggestshowed", "true");
				setPromoCode('MORELEADS');
				return 'Click CANCEL to get more leads with 25% DISCOUNT!'
			}
		}
	}*/

function setPromoCode(codename)
{
	var searchFrm = document.forms['frm_search'];
	if (searchFrm)
	{
		searchFrm.promocode.value = codename;
		checkAvailability();
	}
	else if (navigator.userAgent.indexOf('Firefox') > 0 || navigator.userAgent.indexOf('MSIE') > 0)
		window.location.href = '/home/search/default.aspx?promocode=' + codename;
}

function suggestMoreLeads()
{
	/*if (getDocCookie("suggestshowed") == null)
	{
		window.onbeforeunload = function() 
		{
			if (confirm('===== Get more leads to your order! =====\n\nUse promotional code MORELEADS while ordering leads\nand get 25% more leads on top of your order FREE!\n\nClick OK to have FREE leads.'))
			{
				setDocCookie("suggestshowed", "true");
				setPromoCode('MORELEADS');
				return 'Click CANCEL to get more leads with 25% DISCOUNT!'
			}
		}
	}*/
}

function suggestDelete()
{
	if (getDocCookie("suggestshowed") == null)
		window.onbeforeunload = null;
}

function suggestPermanentDelete()
{
	if (getDocCookie("suggestshowed") == null)
	{
		window.onbeforeunload = null;
		setDocCookie("suggestshowed", "true");
	}
}