
var output = "<div id=\"div_chat_window\" style=\"display:none; width:500px; height:350px; position:fixed; top:20px; left:100px; border:1px black solid; background:#EEEEEE; z-index:1000;\">\n"+
"<scr"+"ipt type=\"text/javascript\" src=\"/scripts/include_js.js.php\"></scr"+"ipt>\n"+
"<form name=\"form_chat\">\n"+
"<table width=\"100%\" height=\"350\" style=\"height:350px; padding:5px;\" border=\"0\">\n"+
"  <tr>\n"+
"    <td style=\"font-size:14px;\">\n"+
"      <b>Wait! Before you go, there are some last minute savings...</b>\n"+
"    </td>\n"+
"    <td style=\"font-size:12px;\" align=\"right\">\n"+
"      <a href=\"javascript:void(0);\" onclick=\"document.getElementById('div_chat_window').style.visibility='hidden';\" style=\"color:#555555; text-decoration:none;\">[x]</a>\n"+
"    </td>\n"+
"  </tr>\n"+
"  <tr>\n"+
"    <td colspan=\"2\" valign=\"top\">\n"+
"      <div id=\"div_chat_scroll\" style=\"width:99%; height:260px; border:1px black solid; background:#FFFFFF; overflow-y:auto;\">\n"+
"        <div style=\"margin:5px;\">\n"+
"          <div id=\"div_chat_text\" style=\"font-size:14px;\">\n"+
"            <b><i>Interactive Chat Session started</i></b>\n"+
"          </div>\n"+
"        </div>\n"+
"      </div>\n"+
"    </td>\n"+
"  </tr>\n"+
"  <tr>\n"+
"    <td colspan=\"2\">\n"+
"      <div id=\"div_chat_typing\" style=\"font-weight:bold; font-style:italic; font-size:12px;\"></div>\n"+
"    </td>\n"+
"  </tr>\n"+
"  <tr>\n"+
"    <td width=\"100%\">\n"+
"      <textarea name=\"chat_msg\" rows=\"2\" style=\"width:98%; height:40px;\" onclick=\"chat_msg_start();\" onkeypress=\"return chat_msg_key(event);\">Enter message here...</textarea>\n"+
"    </td>\n"+
"    <td align=\"right\" style=\"padding-right:5px;\">\n"+
"      <input type=\"button\" value=\"Send\" onclick=\"chat_send();\" style=\"width:65px; height:40px;\" />\n"+
"    </td>\n"+
"  </tr>\n"+
"</table>\n"+
"</form>\n"+
"<scr"+"ipt type=\"text/javascript\">\n"+
"<!--\n"+
"// Custom Variables\n"+
"var agent_names = new Array(\"Laura\", \"Cindy\", \"Ann\", \"Sally\", \"Joanne\", \"Tim\", \"John\");\n"+
"var agent_name = randomElement(agent_names);\n"+
"var agent_color = \"red\";\n"+
"var user_name = \"You\";\n"+
"var user_color = \"blue\";\n"+
"\n"+
"var response_char_sec = 10; // characters per second - agent typing speed\n"+
"var response_delay = 1500; // milliseconds - before agents starts typing\n"+
"\n"+
"var div_chat_scroll_height_default = \"260px\";\n"+
"var div_chat_scroll_height_short = \"245px\";\n"+
"\n"+
"\n"+
"// Variables\n"+
"\n"+
"var d = new Date();\n"+
"var t = d.getTime();\n"+
"var id = t+\"\"+Math.floor(Math.random()*1000000);\n"+
"\n"+
"var log = new Array();\n"+
"var log_num = 0;\n"+
"\n"+
"var user_msgs = new Array();\n"+
"var user_msgs_num = 0;\n"+
"\n"+
"var responses = new Array();\n"+
"responses['answers'] = new Array();\n"+
"var response_last = new Array();\n"+
"var response_timeout = null;\n"+
"var response_type_last = \"\";\n"+
"\n"+
"var div_chat_scroll = document.getElementById(\"div_chat_scroll\");\n"+
"var div_chat_text = document.getElementById(\"div_chat_text\");\n"+
"var div_chat_typing = document.getElementById(\"div_chat_typing\");\n"+
"var div_chat_window = document.getElementById(\"div_chat_window\");\n"+
"var chat_msg = document.form_chat.chat_msg;\n"+
"var chat_msg_default = \"Enter message here...\";\n"+
"\n"+
"var responses_body_msg = \"#responses_body_msg#\";\n"+
"\n"+
"// Functions\n"+
"\n"+
"function chat_scroll(){\n"+
"	div_chat_scroll.scrollTop = div_chat_scroll.scrollHeight;\n"+
"}\n"+
"\n"+
"function chat_send(){\n"+
"	var msg = chat_msg.value;\n"+
"	if(msg != \"\" && msg != chat_msg_default){\n"+
"		chat_msg.value = \"\";\n"+
"		user_msgs[user_msgs_num] = msg;\n"+
"		user_msgs_num++;\n"+
"		chat_msg_add(msg, user_name, user_color);\n"+
"		chat_msg.focus();\n"+
"		chat_msg_respond_start(msg);\n"+
"		chat_log(msg);\n"+
"	}\n"+
"}\n"+
"\n"+
"function chat_msg_add(msg, from, from_color){\n"+
"	//log_msg = from+\": \"+msg;\n"+
"	//chat_log(log_msg);\n"+
"	div_chat_text.innerHTML += \"<div style='margin:2px;'><font color='\"+from_color+\"'>\"+from+\":</font> \"+msg+\"</div>\";\n"+
"	chat_scroll();\n"+
"}\n"+
"\n"+
"function chat_msg_respond_start(msg_user){\n"+
"	var response = chat_msg_respond_answer(msg_user);\n"+
"	if(response != \"\"){\n"+
"		var response_id = responses['answers'].length;\n"+
"		responses['answers'][response_id] = response;\n"+
"		chat_msg_respond_timeout(response_id, \"answers\");\n"+
"	}\n"+
"}\n"+
"\n"+
"function chat_msg_respond_answer(msg_user){\n"+
"	msg_user = msg_user.toLowerCase();\n"+
"	var msg = \"\";\n"+
"	\n"+
"	for(var key in keywords){\n"+
"		if(msg != \"\"){break;}\n"+
"		keywords_split = key.split(\"/\"); // or statements\n"+
"		// try each variation for this answer\n"+
"		for(var i in keywords_split){\n"+
"			keyword = keywords_split[i];\n"+
"			// check whether it is an exact phrase or several words\n"+
"			if(keyword.substring(0,1) == \"\\\"\" && keyword.substring(keyword.length-1, keyword.length) == \"\\\"\"){\n"+
"				keywords_array = new Array(keyword.substring(1, keyword.length-1));\n"+
"			} else {\n"+
"				keywords_array = keyword.split(\" \"); // and statements\n"+
"			}\n"+
"			found_match = true;\n"+
"			// test to see if each required keyword is there\n"+
"			for(var j in keywords_array){\n"+
"				keyword = keywords_array[j];\n"+
"				// \"-\" omit or not\n"+
"				omit = false;\n"+
"				if(keyword.substring(0,1) == \"-\"){\n"+
"					omit = true;\n"+
"					keyword = keyword.substring(1,keyword.length);\n"+
"				}\n"+
"				// check if it is a whole word, not part of another word\n"+
"				word_seperators = new Array(\"\", \" \", \".\", \",\", \"?\", \"!\");\n"+
"				index_start = 0;\n"+
"				index_search = true;\n"+
"				while(index_search){\n"+
"					index = msg_user.indexOf(keyword.toLowerCase(), index_start);\n"+
"					index_start = index+1;\n"+
"					char_before = msg_user.substring(index-1, index);\n"+
"					char_after = msg_user.substring(index+keyword.length, index+keyword.length+1);\n"+
"					if(index == -1){\n"+
"						index_search = false;\n"+
"					} else{\n"+
"						//alert(\"1. '\"+char_before+\"'\\n2. '\"+char_after+\"'\");\n"+
"						if(in_array(char_before,word_seperators) && in_array(char_after,word_seperators)){\n"+
"							index_search = false;\n"+
"						}\n"+
"					}\n"+
"				}\n"+
"				if(omit == true && index != -1){\n"+
"					found_match = false;\n"+
"					break;\n"+
"				}\n"+
"				if(omit == false && index == -1){\n"+
"					found_match = false;\n"+
"					break;\n"+
"				}\n"+
"				//alert(index+\"\\n\"+char_before+\"\\n\"+char_after);\n"+
"			}\n"+
"			if(found_match == true){\n"+
"				msg = keywords[key];\n"+
"				break;\n"+
"			}\n"+
"		}\n"+
"	}\n"+
"	\n"+
"	// Said hi or hello later, ignore, use default\n"+
"	if(msg == responses_body_msg && user_msgs_num > 1){\n"+
"		msg = \"\";\n"+
"	}\n"+
"	\n"+
"	// No specific response, use default\n"+
"	if(msg == \"\"){\n"+
"		if(response_last['default'] == null || response_last['default'] == undefined || responses['default'].length-1 == response_last['default']){\n"+
"			response_last['default'] = -1;\n"+
"		}\n"+
"		response_last['default']++;\n"+
"		msg = responses['default'][response_last['default']];\n"+
"	}\n"+
"	\n"+
"	// Said hi or hello first msg, start body\n"+
"	if(msg == responses_body_msg && user_msgs_num == 1){\n"+
"		chat_msg_respond_timeout(0, \"body\");\n"+
"		msg = \"\";\n"+
"	}\n"+
"	\n"+
"	return msg;\n"+
"}\n"+
"\n"+
"function chat_msg_respond_timeout(response_id, response_type){\n"+
"	if(responses[response_type][response_id] == null || responses[response_type][response_id] == undefined){return false;}\n"+
"	if(response_type_last == \"waiting\" || response_type_last == \"body\"){ // stop typing a default response, answer this question\n"+
"		clearTimeout(response_timeout);\n"+
"		response_timeout = null;\n"+
"	}\n"+
"	if(response_timeout != null){return false;}\n"+
"	response_type_last = response_type;\n"+
"	response = responses[response_type][response_id];\n"+
"	var timeout_length = response.length / response_char_sec * 1000 + response_delay;\n"+
"	setTimeout(\"chat_msg_respond_typing_start();\", response_delay);\n"+
"	response_timeout = setTimeout(\"chat_msg_respond_show(responses['\"+response_type+\"'][\"+response_id+\"]+'', \"+response_id+\"); response_last['\"+response_type+\"']=\"+response_id+\"; if(responses['\"+response_type+\"'].length-1 > \"+response_id+\"){ chat_msg_respond_timeout(\"+response_id+\"+1, '\"+response_type+\"'); }\", timeout_length);// (\"+response.length+\"'+' \"+timeout_length+\")\n"+
"}\n"+
"\n"+
"function chat_msg_respond_show(msg, response_id){\n"+
"	chat_msg_add(msg, agent_name+\" Says\", agent_color);\n"+
"	response_timeout = null;\n"+
"	chat_msg_respond_typing_end();\n"+
"}\n"+
"\n"+
"function chat_msg_respond_typing_start(){\n"+
"	div_chat_typing.innerHTML = \"\"+agent_name+\" Is Typing...\";\n"+
"	div_chat_scroll.style.height = div_chat_scroll_height_short;\n"+
"	chat_scroll();\n"+
"}\n"+
"\n"+
"function chat_msg_respond_typing_end(){\n"+
"	div_chat_scroll.style.height = div_chat_scroll_height_default;\n"+
"	div_chat_typing.innerHTML = \"\";\n"+
"	chat_scroll();\n"+
"}\n"+
"\n"+
"function chat_log(msg){\n"+
"	//log[log_num] = msg;\n"+
"	//log_num++;\n"+
"	ajax_request(\"/scripts/chat.js.php?action=log&id=\"+id+\"&msg=\"+escape(msg));\n"+
"}\n"+
"\n"+
"function chat_show(){\n"+
"	div_chat_window.style.display = \"inline\";\n"+
"}\n"+
"\n"+
"window.chat_onbeforeunload_prompt = true;\n"+
"function chat_onbeforeunload(e) {\n"+
"	window.onbeforeunload = null;\n"+
"	if(window.chat_onbeforeunload_prompt == true){\n"+
"		//window.scrollTo(0,0);\n"+
"		chat_show();\n"+
"		chat_start();\n"+
"		return \"\\nPress \\\"CANCEL\\\" to speak with a live agent about last minute savings.\\n\";\n"+
"	}\n"+
"}\n"+
"window.onbeforeunload = chat_onbeforeunload;\n"+
"if(!!document.form_add_to_cart){\n"+
"	var orig_form_onsubmit = document.form_add_to_cart.onsubmit;\n"+
"	document.form_add_to_cart.onsubmit = function (){ window.chat_onbeforeunload_prompt = false; orig_form_onsubmit(); }\n"+
"}\n"+
"if(!!document.form_add_to_cart_2){\n"+
"	var orig_form_onsubmit_2 = document.form_add_to_cart_2.onsubmit;\n"+
"	document.form_add_to_cart_2.onsubmit = function (){ window.chat_onbeforeunload_prompt = false; orig_form_onsubmit_2(); }\n"+
"}\n"+
"if(!!document.form_add_to_cart_3){\n"+
"	var orig_form_onsubmit_3 = document.form_add_to_cart_3.onsubmit;\n"+
"	document.form_add_to_cart_3.onsubmit = function (){ window.chat_onbeforeunload_prompt = false; orig_form_onsubmit_3(); }\n"+
"}\n"+
"\n"+
"function chat_start(){\n"+
"	chat_log(\"Starting\");\n"+
"	chat_msg_add(line_opening, agent_name+\" Says\", agent_color);\n"+
"	chat_scroll();\n"+
"	chat_msg_respond_timeout(0, \"waiting\");\n"+
"}\n"+
"\n"+
"function chat_msg_start(){\n"+
"	if(chat_msg.value == chat_msg_default){\n"+
"		chat_msg.value = \"\";\n"+
"	}\n"+
"}\n"+
"\n"+
"function chat_msg_key(event){\n"+
"	if(window.event){ // IE\n"+
"		keynum = event.keyCode;\n"+
"	}\n"+
"	else if(event.which){ // Other\n"+
"		keynum = event.which;\n"+
"	}\n"+
"	else{return true;}\n"+
"	if(keynum == 13){ // Enter\n"+
"		chat_send();\n"+
"		return false;\n"+
"	}\n"+
"}\n"+
"\n"+
"function randomElement(myArray){\n"+
"	if(!myArray){return false;}\n"+
"	return myArray[ Math.floor( Math.random() * myArray.length ) ];\n"+
"}\n"+
"\n"+
"function in_array(needle, haystack){\n"+
"	for(var i=0; i<haystack.length; i++){\n"+
"		if(haystack[i] == needle){\n"+
"			return true;\n"+
"		}\n"+
"	}\n"+
"	return false;\n"+
"}\n"+
"\n"+
"\n"+
"// More Custom Variables\n"+
"function chat_link_go(){\n"+
"	var link = \"thankyou2.php?bonus=\"+offer_code;\n"+
"	chat_log(\"Link Clicked: \"+link);\n"+
"	window.location.href = link;\n"+
"}\n"+
"\n"+
"//var offer_name = \"Home Business Tax Guide\";\n"+
"var offer_name = \"\\\"Millionaire Mindset\\\" Online CD\";\n"+
"//var offer_code = \"freetaxguide\";\n"+
"var offer_code = \"freemmcd\";\n"+
"\n"+
"var chat_link = \"<a href='javascript:chat_link_go();'>CLICK HERE</a>\";\n"+
"var price_app = \"$39.95\";\n"+
"var price_shipping_us = \"$9.95\";\n"+
"var price_shipping_int = \"$14.95\";\n"+
"\n"+
"// Opening Lines\n"+
"var lines_opening = new Array();\n"+
"//lines_opening[0] = \"Hey wait! We hate to see you go without getting something for your time. So we would like to offer you a \"+offer_name+\" for FREE with your application kit order! \"+chat_link+\" to get started!\";\n"+
"//lines_opening[0] = \"Hey! I'm \"+agent_name+\" , and I'm going to do my best to answer all your questions. But please, take it easy on me, I'm really just a semi-intelligent computer program... The really cool thing is that, even though I'm not 100% real, I can still answer a lot of your questions and I've ALSO been authorized to offer you a <i>real</i> SPECIAL DEAL today. \"+chat_link+\" to get your Application KIT and receive a \"+offer_name+\" as a BONUS!\";\n"+
"lines_opening[0] = \"Hey! I'm \"+agent_name+\", a semi-intelligent virtual assistant. I'm here to answer your questions and offer you a SPECIAL BONUS: \"+offer_name+\" with your Application KIT order. \"+chat_link+\"\";\n"+
"//lines_opening[1] = \"Hey! \"+chat_link+\" to receive a FREE \"+offer_name+\" with your order application kit order right now! This Tax Guide may help you save more money in taxes than any home business could make you this year!\";\n"+
"var line_opening = lines_opening[0]; //randomElement(lines_opening);\n"+
"\n"+
"// Responses: Waiting for user's initial message\n"+
"responses['waiting'] = new Array();\n"+
"responses['waiting'][0] = \"Just type 'Hi' or 'Hello' in the space below to let me know you are there.\";\n"+
"//responses['waiting'][1] = \"Learn how to save thousands of dollars in cash every year with a home based business -- you'll get our free information-packed guide 100% free. \"+chat_link+\" to get started!\";\n"+
"responses['waiting'][1] = \"Learn exactly what it takes to create the \\\"millionaire mindset\\\" required to achieve your ultimate success -- you'll get our information-packed \"+offer_name+\" 100% free. \"+chat_link+\" to get started!\";\n"+
"responses['waiting'][2] = \"Whenever you are ready, just type 'Hi' or 'Hello' and we can get started...\";\n"+
"responses['waiting'][3] = \"\"+chat_link+\" to take advantage of this amazing offer.\";\n"+
"\n"+
"// Responses: After user says hi\n"+
"responses['body'] = new Array();\n"+
"responses['body'][0] = \"Hi, thanks for chatting with me... Thousands of people are saying goodbye to their bosses, once and for all. And your chance to do the same could be just around the corner! \"+chat_link+\"\";\n"+
"responses['body'][1] = \"What if you could start your own business and earn an extra $1,000, $5000, or even $10,000... would that excite you?\";\n"+
"responses['body'][2] = \"What about incomes of up to $10,000 per week?\";\n"+
"responses['body'][3] = \"We've had members do just that! More important, other team members all over the world who started part-time have been able to quit their jobs and use the CarbonCopyPRO system to produce an incredible income!\";\n"+
"responses['body'][4] = \"As a CarbonCopyPRO member you have the benefit of having a brilliant marketing system that will sell a brilliant product FOR YOU.\";\n"+
"responses['body'][5] = \"You will also be personally trained by a core group of internet experts who are incentavized to see you succeed! If you have drive and ambition then you are in the right place at the right time!\";\n"+
"responses['body'][6] = \"\"+chat_link+\" and we'll include the \"+offer_name+\" for FREE and give you a call from one of our business coaches.\";\n"+
"responses['body'][7] = \"Our goal is to produce 100 CarbonCopyPRO Millionaires by 2012, and we want to make sure you’re one of them.\";\n"+
"responses['body'][8] = \"Does this sound like something you would like try? \"+chat_link+\" to get started.\";\n"+
"\n"+
"// Responses: Default lines\n"+
"responses['default'] = new Array();\n"+
"responses['default'][0] = \"Not sure I understood you, but I can say that we are so sure that this package will work for you that not only do we offer a 30-day money back guarantee, less shipping, but we will include the \"+offer_name+\" for FREE! \"+chat_link+\"\";\n"+
"responses['default'][1] = \"Mmm not sure. I'll have to ask someone to program a response for that into my circuits. This is a community of entrepreneurs that helps the average person earn an extraordinary income! Simply \"+chat_link+\" to apply.\";\n"+
"responses['default'][2] = \"Sorry, I don't know, but with our guarantee what have you got to lose?\";\n"+
"responses['default'][3] = \"Perhaps if you reword your question I'll understand it better. The Application KIT is your first step, plus you can get this BONUS \"+offer_name+\" for FREE! \"+chat_link+\" because you'll kick yourself if you don't.\";\n"+
"responses['default'][4] = \"I feel silly for not being able to answer that.\";\n"+
"\n"+
"// Responses: Keyword/keyphrase matching (First match will be used, place in order of priority)\n"+
"var keywords = new Array();\n"+
"\n"+
"keywords['deal/bonus'] = \"We hate to see you go without getting something for your time. So we would like to offer you a \"+offer_name+\" for FREE with your Application KIT order! \"+chat_link+\" to get started!\";\n"+
"keywords['scam'] = \"No, this is not a scam. The CarbonCopyPRO system comes with our 30-day money back guarantee (less shipping & handling fees) and we'll give you the \"+offer_name+\" for FREE! I'm sure you'll be pleased \"+chat_link+\" for this last-minute offer.\";\n"+
"keywords['work'] = \"CarbonCopyPRO is a revolutionary SYSTEM that eliminates most of the individual marketer's in-experience and abilities as variables for their success. It helps you generate the leads, then filters and qualifies them for you - AUTOMATICALLY and on AUTOPILOT.<br>CarbonCopyPRO eliminates the most dysfunctional aspects of selling, telling, and explaining—until AFTER the sale is made and the money is deposited into your bank account!\";\n"+
"keywords['guarantee/refund'] = \"The CarbonCopyPRO system comes with our 30-day money back guarantee (less shipping & handling fees) and we'll give you the \"+offer_name+\" for FREE! Your satisfaction is GUARANTEED. \"+chat_link+\" for this last-minute offer.\";\n"+
"keywords['cost/price/\"how much\"'] = \"You will receive all we have to offer for just \"+price_app+\" plus shipping. It's an amazing offer! Just \"+chat_link+\" to get started!\";\n"+
"keywords['free'] = \"Yes! We would like to offer you a \"+offer_name+\" for FREE with your application kit order! \"+chat_link+\" to get started!\";\n"+
"keywords['credit card offer'] = \"No credit card? <a href='https://www.allaccesscard.com/prepaid-debit-card/applyNow.m?AID=UPS&SiteID=CarbonCopyPRO’ target='_new'><font color='#000080'>CLICK HERE</font></a> and get a credit card now. It's absolutely free with no credit checks... It's a great credit card and you can apply online!\";\n"+
"keywords['creditcard/\"credit card\"/creditcards/\"credit cards\"/\"bill me\"/c.o.d./debit/visa/mastercard/discover/american express/amex/maestro/cash'] = \"We are proud to accept VISA, MasterCard, Discover and American Express.\";\n"+
"keywords['paypal/\"pay pal\"'] = \"I'm sorry. We currently do not accept PayPal at this time, but we accept credit cards.\";\n"+
"keywords['shipping/ship/shipped'] = \"The cost of shipping is \"+price_shipping_us+\" for residents of the US and Canada, and \"+price_shipping_int+\" for International residents.\";\n"+
"keywords['already bought/already paid'] = \"Oh, if you've already made your purchase and have no further questions please feel free to close this chat and go to <a href='http://carboncopypro.com'>CarbonCopyPRO.com</a> to take the next step. Have a nice day :)\";\n"+
"//keywords['information safe'] = \"Yes, absolutely. The site uses HTTPS which is a designation used by all secure sites.\";\n"+
"keywords['secure/safe'] = \"Just so you know our site is FULLY encrypted using 128-bit secure sockets layer (SSL), the highest level of protection. We also understand you want your private information kept private. That's why we promise never to resell or give out your contact information or email to anyone. Our privacy promise is just one of the reasons we're one of the most trusted names on the web.\";\n"+
"keywords['international/united states/remote area/uk/canada/norway/sweden/europe/asia/africa/country/india'] = \"It doesn’t matter where you are from, we can provide our system for anyone, anywhere!\";\n"+
"keywords['language/english/spanish/norwegian/swedish'] = \"We currently have our site availabe in 42 different languages.\";\n"+
"\n"+
"keywords['\"who are you\"/name'] = \"My name is \"+agent_name+\" and I am a chat representative with CarbonCopyPro.com here to answer any questions you may have.\";\n"+
"keywords['\"real person\"/\"live person\"/\"are you real\"/\"are u real\"/virtual/robot/programmed/automatic answers/talking computer/automated response'] = \"My name is \"+agent_name+\" and I'm a virtual assistant. I'll do my best to answer any questions you may have and I've ALSO been authorized to offer you a <i>real</i> SPECIAL DEAL today. \"+chat_link+\" to get your Application KIT and receive a \"+offer_name+\" as a BONUS!\";\n"+
"\n"+
"keywords['maybe/\"not sure\"'] = \"Understandable, but please don't hesitate, this is a special deal that I am authorized to offer you right now through this chat. \"+chat_link+\" because this offer may not be available tomorrow.\";\n"+
"keywords['yes'] = \"Okay great. \"+chat_link+\" and fill out the page in order to take advantage of this great offer.\";\n"+
"keywords['no'] = \"Just remember, the CarbonCopyPRO system comes with our 30-day money back guarantee (less shipping & handling fees) and now we'll give you the \"+offer_name+\" for FREE!<br>You can't lose, \"+chat_link+\" for this amazing offer.\";\n"+
"keywords['no2'] = \"OK, Thank you for your time. To end the CHAT simply CLICK on the \\\"X\\\" in upper right.\";\n"+
"\n"+
"keywords['goodbye/bye'] = \"Goodbye. Have a great day!\";\n"+
"keywords['hi/hello/hey/yo/\"whats up\"'] = responses_body_msg;\n"+
"\n"+
"// Start Chat\n"+
"//chat_start();\n"+
"\n"+
"-->\n"+
"</scr"+"ipt>\n"+
"</div>";

document.write(output);
