You can do it with popups
<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;
}
Then, you link to it by:
<a href="https://stackoverflow.com/questions/9221563/popupex.html" onclick="return popitup("https://stackoverflow.com/questions/9221563/popupex.html")">Link to popup</a>
solved How can i open a link in a new window in IE8? [closed]