<!--
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;
	newWin = window.open(name,'','toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height);
	newWin.focus();
}

// -->

