function popUp(url) {
 newWindow =
  window.open(url, "PopUp", "width=500,height=300,scrollbars");
 newWindow.focus();
}
function popUp2(url) {
 newWindow =
  window.open(url, "PopUp", "width=500,height=320,scrollbars");
 newWindow.focus();
}
