<!--
//	CallUs();
	setTimeout('CallUs()', 700);
	function CallUs(){
		// Show a message to call us, but only show it one time each session.
		var vname = "callus";
		var x = document.cookie;
		if (x.indexOf(vname + "=") > -1)return(false);	// Cookie has been set

		document.cookie = vname + "=1;path=";					// Set the Cookie
		x = document.cookie;
		if (x.indexOf(vname + "=") == -1) return(false); // Cookie cannot be set

		x = document.location.toString();
		     if (x.indexOf("pwb")    > -1) x = "writing a business plan";
		else if (x.indexOf("pwx")    > -1) x = "writing a business plan";
		else if (x.indexOf("pwm")    > -1) x = "writing a marketing plan";
		else if (x.indexOf("pwh")    > -1) x = "writing a marketing plan";
		else if (x.indexOf("pwp")    > -1) x = "writing a pricing plan";
		else if (x.indexOf("pws")    > -1) x = "writing a sales plan";
		else if (x.indexOf("sidemo") > -1) x = "analyzing sales strategy";
		else if (x.indexOf("qidemo") > -1) x = "analyzing new product ideas";
		else if (x.indexOf("bidemo") > -1) x = "analyzing marketing strategy";
		else                               x = "business planning tools";
		
		var oPopup = window.createPopup();	// initialized hidden
		var oPopBody = oPopup.document.body;
		oPopBody.style.backgroundColor = "lightyellow";
		oPopBody.style.border = "solid red 10px";
		oPopBody.style.fontFamily = "Arial";
		oPopBody.style.fontSize = "7pt";
		oPopBody.innerHTML = "<table width=100% cellpadding=10><tr><td><font size=+1><b>Can we help?</b></font><p><img src='http://www.brs-inc.com/images/Gustin.gif' WIDTH=88 HEIGHT=102 alt='Kylon Gustin'hspace=10 align=left>Your choices of pages to view indicate a strong interest in " + x + ".<p>Would you like to talk directly with one of the software developers who wrote and support our business planning tools?<p align=center><font size=+2><b>(800)423-1228</b></font><br><font size=-1>9:00 - 5:00 Central Time Zone<br>Click anywhere outside to close this message.</font></center><br><br></td></tr></table>";
		oPopup.show(0, 0, 500, 0);	// Create with zero height
		var realHeight = oPopBody.scrollHeight;
		oPopup.hide();				// Destroy
		oPopup.show(200, 100, 500, realHeight, document.body);
		return true;
	}
//-->
