<?xml version="1.0" encoding="UTF-8"?>
<conxml version="1.0" xmlns="http://www.zingku.com/conxml"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schematicLocation="http://www.zingku.com/conxml http://www.zingku.com/conxml10/conxml.xsd">
	<form>
		<block>
			<script>
				<![CDATA[
		       		var answers  = [
						"Signs point to yes", 
						"Yes",
						"Most likely",
						"Without a doubt",
						"Yes - definitely",
						"As I see it, yes",
						"You may rely on it",
						"Outlook good",
						"It is certain",
						"It is decidedly so",
						"Reply hazy, try again",
						"Better not tell you now",
						"Ask again later",
						"Concentrate and ask again",
						"Cannot predict now",
						"My sources say no",
						"Very doubtful",
						"My reply is no",
						"Outlook not so good",
						"Don't count on it" ];       			
	       		
		       		var ranIndex = Math.random()*(answers.length-1);
		       		ranIndex = Math.round(ranIndex);
       		]]>
			</script>
			<!-- send the answer -->
			<value expr="answers[ranIndex]" />
		</block>
	</form>
</conxml>
