function newWindow(){
if (newWin == null){
  var attr = "height=600,width=800,menubar=yes,status=yes,location=yes,scrollbars=yes,toolbar=yes,resizable=1"
  var newWin = window.open("","newWin",attr);
}
newWin.focus();
return true
}