
<!-- Begin
var winPop = null;
function go ( url ) {
  winPop = window.open("", "popup", "width=525,height=400,resizable=1,scrollbars=1,toolbar=0,menubar=0,location=0,directories=0");
  winPop.location.href = url;
  winPop.focus();
  if (winPop.opener == null) {
       winPop.opener = window;
  } 
}
// End -->


