// JavaScript Document
function openPoster(param) {
	var url = 'poster.html?'+param;
	var newWin = window.open(url,'posterViewer','scrollbars=no,resizable=no,status=yes,width=760,height=672');
	if (window.focus) {
		newWin.focus();
	}
}
function openBio(param) {
	var url = 'bio.html?'+param;
	var newWin = window.open(url,'bioViewer','scrollbars=no,resizable=no,status=yes,width=530,height=470');
	if (window.focus) {
		newWin.focus();
	}
}

function closeWindow() {
	self.close();
}
