To create a popup you'll need the following script:
Code: Select all
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=200,width=150');
if (window.focus) {newwindow.focus()}
return false;
}
// -->
</script>
Code: Select all
<a href="popupex.html" onclick="return popitup('https://robot.lk')"
>Link to popup</a>
