﻿function openNewPrintWindow(myPage)
{
		// open a child window containing the site map for the user
		// to see if the changes are reflected correctly
		
	var MyWindow
		
	MyWindow = open(myPage,"MyWindow",
					"toolbar=yes,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=no,copyhistory=no,width=800,height=600");
		
		
} // end function
