<!--
var popUpWin = null;
function openWindow1(url)
   {
     features = 'toolbar=no,status=0,dependent=1,left=60,top=20,scrollbars=yes,width=420,height=450';
     popUpWin = window.open(url, 'NewWindow', features);
     if(popUpWin.focus) popUpWin.focus();
   }
// -->
