<!--  

defaultStatus = '';

function set_focus( form_element )
	{
	if( form_element && form_element.criteria )
		form_element.criteria.focus();
	}
function openWin(loc)
	{
		var bar = 'directories=no,location=no,menubar=no,status=no'
		bar += ',titlebar=no,toolbar=no,scrollbars=no,resizeable=no';
		var option = 'width=450,height=450';
		var feature = bar + ',' + option;
		var win = open(loc, '', feature);
		
		//win.document.writeln('<b>' + word + '</b>');
		//win.document.write(desc);
		
		//win.document.close();
		win.focus();
	}

function openWindow(loc,h,w) {
// 060707 cc - this function is essentially the one above, but made a little more useful.
//             you may specify a height and width, but you don't HAVE to.
//             obviously, you could apply the same technique to any other value you wish
//             to be customizable, but optional with a default value.

	var h = (h == null) ? "450" : h;    
	var w = (w == null) ? "450" : w;    
	
	var options = 'directories=no,';
	options +=    'location=no,';
	options +=    'menubar=no,';
	options +=    'status=no,';
	options +=    'titlebar=no,';
	options +=    'toolbar=no,';
	options +=    'scrollbars=no,';
	options +=    'resizeable=no,';
	options +=    'width=' + w + ',height=' + h;
//	alert(options)

	var win = open(loc, '', options);
		
	win.focus();
	}

// -->

