Código para você add um link de uma página que irá aparecer em pop-up em seu site.
<script language="javascript">
var win = null;
function NovaJanela(pagina,nome,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(pagina,nome,settings);
}
</script>
<a href="https://seusite.webnode.com.br/" onclick="NovaJanela(this.href,'nomeJanela','450','450','yes');return false">Nome do Link</a>
—————