function openEditWindow(url, width, height)
{
	window.showModalDialog(url, null,'status:no;dialogWidth:'+width+'px;dialogHeight:'+height+'px;dialogHide:true;help:no;scroll:auto'); 
}

function editDictionary(event, termCode, alertText)
{
	if (event.button == 2) {
		alert(alertText);
		openEditWindow('/dict/edit_dict_text.xsp?termCode=' + termCode + '&compactMode=true', 520, 320);
	}
}

