/* open window script v1.0a *//* by charles fahey (cfahey@bestpitch.com) *//*	open new window	this function is called when the link is clicked	variables submitted are:	page_id=the url of the page to open	width=the width of the window	height=the height of the window*/// create identity of opener windowself.name = "enrollment_window";function open_new_window(page_id,width,height) {	// create the window stats	window_stats="width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,scrollbars=yes,menubar=no,resizable=no,left=72,top=72";	// open the window	opened_window = window.open(page_id,"edit_window",window_stats)	opened_window.creator = self}
