<!--
var newWindow = null;
function closeWin(){
	if (newWindow != null){
		if(!newWindow.closed)
			newWindow.close();
	}
}
function popUpWin(url, strWidth, strHeight){
	closeWin();
	var tools="width="+strWidth+",height="+strHeight+",left=0,top=0,location=no,directories=no,status=no,scrollbars=yes,resizable=no,menubar=no,toolbar=no";
	s = new String(url);
	s = s.replace(/.jpg/g,".htm");
	newWindow = window.open(s, 'newWin', tools);
	newWindow.focus();
}
//-->
