﻿// JScript File

function popup(url, height, width) {
	newwindow=window.open(url,'name','scrollbars=1,height=' + height + ',width=' + width);
	if (window.focus) {newwindow.focus()}
	return false;
}

function popupglossary(url)
{
  popup(url, 275, 525);
}