Within the scope of my project, I have implemented a custom pop up page using JavaScript. This pop up includes a form for users to fill out. At the same time, I also need to load certain JavaScript files when the pop up is initialized. Can you please advise on how to achieve this?
<html>
<head>
<script type='text/javascript' src='files/jsfiles/core.js'></script>
</head>
<body>
<!- To initiate javascript function showUsers() from here ->
<input type='button' onclick='showUsers();' value='listUsers'>
</body>
</html>