﻿var timTimer;

function setPopupCookie()
{
	document.cookie = "popupshown=yes";
}

function getPopupCookie()
{
	var sVal = document.cookie;

	if (sVal.indexOf("popupshown=yes") >= 0)
	{
		return true;
	}
	else
	{
		return false;
	}
}

function showPopup()
{
	if (!getPopupCookie())
	{
		timTimer = window.setTimeout("openWindow()", 1000);
	}
}

function openWindow()
{
	var nyWin;
	myWin = window.open ("http://www.b2bm.biz/b2bmsurvey", "surveyPopup", "status=1,height=400,width=650");
	myWin.blur();
	setPopupCookie();
	window.clearTimeout(timTimer);
}
