//  SurveyNotes1.0.js
//  JavaScript functions for SurveyNotes collection
//  created 2003-10-08 Peter C. Gorman
//  last modified 

function openGridWindow() {
	options = "toolbar=0,status=0,menubar=0,scrollbars=0," +
	        "resizable=1,width=195,height=250,left=20,top=20";

	theURL = "/SurveyNotes/SectionGridL.html";

	Ewindow = window.open(theURL, "GridWindow", options);

	if(window.Ewindow)
		Ewindow.focus();
}


