function getPath() {	var path = new String( location.pathname );	var pathparts = path.split( '.nsf');	return pathparts[0] + ".nsf"};//FUNCTION dbox-------------------------------------------------function dbox( urlstring, w, h, resize) {	var args = new Array( "dependent=yes","scrollbars=yes","status=no","top=40","left=40");	args[6] = "width=" + w;	args[7] = "height=" + h; 	args[8] = "resizable="+ resize;	window.open( urlstring, '_blank', args.join() );};//FUNCTION aptSearchPick-------------------------------------------------function doEnroll( classID )  {	cmd =  '/login?OpenForm&class=';	dbox( getPath() + cmd + classID, '400', '350', 'yes' );};