Forum Moderators: phranque
<a href="mypage.html" onClick="newWindow('mypage.html'); return false;">My Page</a>
<script type="text/javascript">
function newWindow(url) {
var day = new Date();
var id = day.getTime():
// The previous insures a new window always opens
// instead of clicked content opening in the same window
var win=open(url,id,'width=300,height=400,scrollbars,resizable');
}
</script>
I recommend ALWAYS leaving scrollbars and resizable ON, you never know what someone's going to experience.