// JavaScript Document

function Confirm(msg) {
  return confirm (msg);
}

function PopUp(winUrl, winName) {
  window.open (winUrl, winName);
}
