Forum Moderators: open
<script type="text/javascript">
// <![CDATA[
function PopContent(content){
newWindow = window.open('','newWindow','resizable,height=100,width=200');
var popdoc = newWindow.document;
popdoc.write(content);
popdoc.close();
}
// ]]>
</script>
<a href="#" onclick="PopContent('This is a test'); return false;">link</a>
Added: And in Firefox.