<!--
var newWin = null;
function closeWin(){
	if (newWin != null){
		if(!newWin.closed) newWin.close();
	}
}
function openWindow(name,width,height) {
	closeWin();
	width=parseInt(width);
	height=parseInt(height);
	if (width < 1 || isNaN(width)) width = 400;
	if (height < 1 || isNaN(height)) height = 200;
	if (name.indexOf('/') != -1) {
  		newWin = window.open(name,'','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
	} else {
		name = name.toUpperCase();
		if (name == 'ITREX') {
  			newWin = window.open('http://www.itrexmultimedia.com','iTREX','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
		} else if (name == 'HELP') {
  			newWin = window.open('/pub_html/help.html','Help','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
		} else if (name == 'HELPSEARCH') {
  			newWin = window.open('/pub_html/helpsearch_main.html','Help','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
		} else if (name == 'HELPBIBLIO') {
  			newWin = window.open('/pub_html/helpbiblio_main.html','Help','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
		} else if (name == 'INSCRIPTION') {
  			newWin = window.open('/pub_cgi/inscription_display.pl','Inscription','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
		}
	}
	newWin.focus();
}

// -->
