//Reverse Greymatter Pop-up\\
If you have your greymatter comments popping up in a new window and you want to go back to the regular way with it staying in the iframe then follow this tutorial.
<script language="javascript">
var win = null;
function pop(mypage,myname,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+',status=yes,scrollbars='+scroll+',resizable=no'
win = window.open(mypage,myname,settings)
}
</script>