Forum Moderators: open
function get_radio_value()
{
var wrong = "<html><head><style type='text/css'>body {margin: 0; padding:0; border:0;}</style>\
<title>Incorrect, try again!</title></head><body><bgsound src='Plbt.wav'>\
<a href='javascript:window.close()'><img src='wrong.jpg'></a></body></html>";
var right = "<html><head><style type='text/css'>body {margin: 0}</style>\
<title>You are Correct!</title></head><body>\
<a href='javascript:window.close()'><img src='right.jpg'></a></body></html>";
for (var i=0; i < document.question.mquestion.length; i++)
{
if (document.question.mquestion[i].checked)
{
var rad_val = document.question.mquestion[i].value;
if (rad_val != "b")
{ var popup = window.open('','',"resizeable=no,scrollbars=no,location=no,menubar=no,toolbar=no,width=221,height=112");
popup.document.write(wrong);
pops.document.close();
}
else
{ var popup = window.open("","window","resizeable,scrollbars=no,width=221,height=112");
popup.document.write(right);
pops.document.close();
}
}
}
}
</script>
var wrong = "<html><head>....
var right = "<html>.....
var wrong = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 '+
'Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">'+
'<html lang="en"><head><title>Incorrect, try again!</title>'+
'<style type="text/css">body {margin: 0; padding:0; border:0;}</style></head><body>'+
'<a href="#" onclick="window.close(); return false;"><img src="wrong.jpg"></a></body></html>';
//
var right = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 '+
'Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">'+
'<html lang="en"><head><title>You are Correct!</title>'+
'<style type="text/css">body {margin: 0; padding:0; border:0;}</style></head><body>'+
'<a href="#" onclick="window.close(); return false;"><img src="right.jpg"></a></body></html>';
//
// Only using "j" here because the code tags on this message board screw up "i"
for (var j=0; j < document.question.mquestion.length; j++) {
if (document.question.mquestion[j].checked) {
var targ = (rad_val != "b")?wrong:right;
window.open('','',"width=221,height=112");
popup.document.write(targ);
popup.document.close();
break;
}
}