// JavaScript Document

function termsPopup(url, args) {
	w = window.open(url, name, args);
	if (window.focus) {
		w.focus();
	}
	return false;
}