// different functions for different sizes/attributes of pop-up windows

var popup;
function popup(link, x, y) {
	newwindow=window.open (
		link.href,
		link.target,
		'history,resizable,scrollbars,width=' + x + ',height=' + y
	);
	if (window.focus) {newwindow.focus()}
	return false;
}