	var a1=""
	var q1 = '<span class="olu2">List five things that convinced you of what a great way this is to learn about careers.</span>'

function pickAnswer1(form)
	{
	a1=a1+form.message1.value;
	}
	
	
function writeWindow(q1,a1)
	{
	newWindow=window.open("","results","width=396,height=360,scrollbars=yes");
	parseInt(navigator.appVersion);
	if (parseInt(navigator.appVersion) >= 4)
	{
	newWindow.moveTo(300,150);
	newWindow.focus()
	}
	else
	{
	newWindow.focus();
	}
	newWindow.document.write('<html><head><Title>Results</title><LINK REL="stylesheet" HREF="anita.css" TYPE="text/css"></head><BODY BGCOLOR="#ffffff">');
	newWindow.document.write('<span class="olu3">');
	newWindow.document.write('<p>');
	newWindow.document.write(q1);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a1+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('</span>');
	newWindow.document.write('</body></html>');
	}
	
	function results(form1)
	{
	pickAnswer1(form1);
	writeWindow(q1,a1);
	}
	

