// JavaScript Document
  function winter() {
  popwin = open("","Popup","scrollbar=yes,width=400,height=300");
   popwin.document.open();
    with (popwin.document) {
	write("<body onBlur='window.close()'>");
	write("<B>Winter Term</B> <BR><BR>");
    write("Winter mini-Term Dates: January 3rd, 2006 - February 16th 2006<BR> Salary $45hr totaling $1000.<BR><BR><BR>");
	write("<b>Courses Offered</b><BR>High School Courses<ul><li>Geography</li><li>Art</li><li>Health Education</li>");
           }
popwin.document.close();
}