
var newWin

function windowManager(urlz){
newWin=window.open("","webWin","HEIGHT=400, WIDTH=500, TOOLBAR=no, LOCATION=no, STATUS=no, MENUBAR=no, scrollbars=yes, RESIZABLE=yes");
newWin.location.href=urlz

  if(!newWin.focus()){
    newWin.focus()
  }
}