 
	var a1=""
	var a2=""
	var a3=""
	var a4=""
	var a5=""
	var a6=""
	var a7=""
	var q1 = '<span class="olu2">TASK: From the Occupational Outlook Handbook (OOH), first find your career for the day, then read the entire description.  At the end ' +'of the description you will find Sources of Additional Information.  What is the name ' +'and location of one association where you can learn more about your career?</span>'

var q2 = '<span class="olu2">What is the school?</span>'

var q3 = '<span class="olu2">What is the publication?</span>'

var q4 = '<span class="olu2">What is the related job?</span>'

var q5 = '<span class="olu2">What is the number of employees?</span>'

var q6 = '<span class="olu2">What is the wage range?</span>'

var q7 = '<span class="olu2">Describe one new thing you learned from this video?</span>'


	

function pickAnswer1(form)
	{
	a1=a1+form.message1.value;
	}
	
function pickAnswer2(form)
	{
	a2=a2+form.message2.value;
	}
function pickAnswer3(form)
	{
	a3=a3+form.message3.value;
	}
function pickAnswer4(form)
	{
	a4=a4+form.message4.value;
	}
function pickAnswer5(form)
	{
	a5=a5+form.message5.value;
	}
function pickAnswer6(form)
	{
	a6=a6+form.message6.value;
	}
function pickAnswer7(form)
	{
	a7=a7+form.message7.value;
	}

function writeWindow(q1,q2,q3,q4,q5,q6,q7,a1,a2,a3,a4,a5,a6,a7)
	{
	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('<p>');
	newWindow.document.write(q2);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a2+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write(q3);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a3+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write(q4);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a4+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write(q5);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a5+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write(q6);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a6+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write(q7);
	newWindow.document.write('</p>');
	newWindow.document.write('<p>');
	newWindow.document.write('<font class="answer">'+a7+'</font>');
	newWindow.document.write('</p>');
	newWindow.document.write('</span>');
	newWindow.document.write('</body></html>');
	}

	function results(form1, form2, form3, form4, form5, form6, form7)
	{
        pickAnswer1(form1);
	pickAnswer2(form2);
	pickAnswer3(form3);
	pickAnswer4(form4);
	pickAnswer5(form5);
	pickAnswer6(form6);
	pickAnswer7(form7);
	writeWindow(q1,q2,q3,q4,q5,q6,q7,a1,a2,a3,a4,a5,a6,a7);
	}



