function plural_nouns()
{
parent.frames[1].document.open();
parent.frames[1].document.write("<html>");
parent.frames[1].document.write("<head>");
parent.frames[1].document.write("</head><body><form name='form_name'><table width='400' align='center' cellspacing='5' cellpadding='0' border='0'>");
parent.frames[1].document.write("<td align='middle'>");
parent.frames[1].document.write("<EM>Plural Nouns</EM></td></tr>");
parent.frames[1].document.write("<td align='center'><FONT face='times' size='3'>" + format_print(word.gender[current_vocab_list[activity_page]]) + " " + format_print(word.name[current_vocab_list[activity_page]]) + ", " + "</font><FONT face='times' size='3' color='green'><em>" + "the " + format_print(word.meaning[current_vocab_list[activity_page]]) + "</em></font></td></tr>");
parent.frames[1].document.write("<TD><table align='center' width='400' cellspacing='0' cellpadding='2' border='1'>");
parent.frames[1].document.write("<td width='33%'><INPUT name=plural type=radio> -<FONT face='' size=1><EM>(no change) </EM></FONT>  </td><td width='33%'><INPUT name=plural type=radio><IMG alt='' border=0 height=10 src='umlaut.jpg' width=10>e</td><td width='33%'><INPUT name=plural type=radio>-n</td></tr>");
parent.frames[1].document.write("<td width='33%'><INPUT name=plural type=radio><IMG alt='' border=0 height=10 src='umlaut.jpg' width=10></td><td width='33%'><INPUT name=plural type=radio>-er</td><td width='33%'><INPUT name=plural type=radio>-nen</td></tr>");
parent.frames[1].document.write("<td width='33%'><INPUT name=plural type=radio>-e</td><td width='33%'><INPUT name=plural type=radio><IMG alt='' border=0 height=10 src='umlaut.jpg' width=10>er</td><td width='33%'><INPUT name=plural type=radio>-s</td></tr>");
parent.frames[1].document.write("<td width='33%'></td><td width='33%'><INPUT name=plural type=radio>-en</td><td width='33%'></td></tr></table></TD></TR></table></form>");
instructions("select");
parent.frames[1].document.write("</body></html>");
parent.frames[1].document.close();
}



function check_plural_nouns()
{
var correct=0;
var dynamic_message = "Please choose an answer!";
var image;

if(parent.frames[1].document.form_name.plural[word.plural_answer[current_vocab_list[activity_page]] - 1].checked)
correct =1;

if(correct == 1)
{
image = "light_bulb.gif";
can_continue = 1;
dynamic_message = "You are correct!" + "<font color='maroon'><EM>" + " die " + word.plural[current_vocab_list[activity_page]] + "</EM></FONT>";
}
else
{
image = "warning.gif";
can_continue = 0;
dynamic_message = "Try Again!"
}

write_feedback(dynamic_message, image);
}
