function NewWindow(URL,winName) {
  var features;
  features = "scrollbars=yes,width=550,height=450,top=100,left=200";
  win=window.open(URL,winName,features);
  if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
}