<!--
var remoteWin = null;
function windowopen(targetURL, width, height) {
  var winl = window.screenLeft + ((document.body.clientWidth - width) / 2);
  var wint = window.screenTop + ((document.body.clientHeight - height) / 2) -10 ;
  remoteWin = window.open('','htRemote','top=' + wint + ',left=' + winl + ',toolbar=0,width=' + width + ',height=' + height +',directories=0,status=0,scrollbars=0,resize=0,menubar=0');
  if (remoteWin != null) {
    if (remoteWin.opener == null){remoteWin.opener = self;}
    remoteWin.location.href = targetURL;
  }
}
//-->