
function openwin(thelink) {
	var theWindow = window.open(thelink.getAttribute('href'), 'output');
	theWindow.focus();
	return theWindow;
}
