Well,
I dont remember the link. Sorry.
All I did was change the 45 to a 95 in:
includes/modules/pages/popup_images/jscript_main.php
Code:
<script language="javascript" type="text/javascript"><!--
var i=0;
function resize() {
if (navigator.appName == 'Netscape') i=10;
if (document.images[0]) {
imgHeight = document.images[0].height+95-i;
imgWidth = document.images[0].width+30;
var height = screen.height;
var width = screen.width;
var leftpos = width / 2 - imgWidth / 2;
var toppos = height / 2 - imgHeight / 2;
window.moveTo(leftpos, toppos);
window.resizeTo(imgWidth, imgHeight);
}
self.focus();
}
//--></script>