<!--
var myAgent = navigator.userAgent;
var ow = 0;
var OpenWin;
if ( myAgent.indexOf("MSIE") != -1 ) ma="IE"; else ma="UN";
function openWin( windowURL,w,h ) {
 if (ow==1){
  if ( ma=="IE" ) OpenWin.close();
  ow=0;
 }
 OpenWin = window.open(windowURL, 'Info', 'width='+w+',height='+h+',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=1,resizable=0');
 ow=1;
	
}
//-->
