<!-- this is the pop-up javascript -->
<!--
var popWin;
width=400;
height=300;
function openWin(url,width,height){
	if (popWin && !popWin.closed){
		popWin.close();
		}
	popWin = window.open(url, 'popWin', 'width=' + width + ',height=' + height + ',left=150,top=50,toolbar=0,location=0,directories=0,status=0,scrollbars=auto,resizable=1');
	popWin.focus();
	}
//-->
