				
<!--
function glossWindow(address, windowName, width, height, type) {
	var defWidth = 515; 
	var defHeight = 450;
	var defWindowName = 'glossary';
	if  (height == null || height == '') {
		height = defHeight;
		}
	if (width == null || width == '') {
		width = defWidth;
		}
	if (windowName == null || windowName == '') {
		windowName = defWindowName ;
		}
//	alert('width: ' + width + ', height: ' + height + ', windowName: ' + windowName);
	if (type == "menu") {
		var features = "toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=" + width + ",height=" + height;
		}
	else if (type == "offer") {
		var features = "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=" + width + ",height=" + height;
		}
	else {
		var features = "toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=1,width=" + width + ",height=" + height;
		}
	var win = window.open(address,windowName,features);
	win.focus();
	}
//-->		

