// Created by QuizMaster Windows Generator
// copyright Mike Capstick  22/10/2003
// load  arrays with a set of questions
title='Geometry Vocabulary for Lines'
facts=new Array();
facts[0]='A ray is the part of a line made up of one end point.'
facts[1]='A line is a straight, continuous and unending set of points in a plane.'
facts[2]='A line segment is the part of a line that has two end points.'
facts[3]='Intersecting lines meet or cross at a common point (any angle).'
facts[4]='Parallel lines on a plane will never intersect.'
facts[5]='A plane is a flat surface made up of a continuous and unending collection of points.'
facts[6]='A symmetry line is an imaginary line along which a figure can be folded, so that the two parts match.'
facts[7]='A point is an exact location in space, commonly represented by a dot.'
relfacts=new Array();
facts[0]='A ray is the part of a line made up of one end point.'
facts[1]='A line is a straight, continuous and unending set of points in a plane.'
facts[2]='A line segment is the part of a line that has two end points.'
facts[3]='Intersecting lines meet or cross at a common point (any angle).'
facts[4]='Parallel lines on a plane will never intersect.'
facts[5]='A plane is a flat surface made up of a continuous and unending collection of points.'
facts[6]='A symmetry line is an imaginary line along which a figure can be folded, so that the two parts match.'
facts[7]='A point is an exact location in space, commonly represented by a dot.'
//Beat The Clock
timestart=120  // 120 second countdown
timestop=0 
function timer(){
if (timestart<timestop)
   {clearTimeout(timerid);
    alert('You ran out of time, try again');
    window.location.reload()}
else {document.forms[0].elements[0].value=timestart
      timestart=timestart-1 ;
      timerid=setTimeout('timer()',1000);}
}
