0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
coppermine
/
1.5.12-0
/
standard
/
htdocs
/
js
/
[
Home
]
File: minibrowser.js
/************************* Coppermine Photo Gallery ************************ Copyright (c) 2003-2011 Coppermine Dev Team v1.1 originaly written by Gregory DEMAR This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 as published by the Free Software Foundation. ******************************************** Coppermine version: 1.5.12 $HeadURL: https://coppermine.svn.sourceforge.net/svnroot/coppermine/trunk/cpg1.5.x/js/minibrowser.js $ $Revision: 8154 $ **********************************************/ function adjust_popup() { var w, h, fixedW, fixedH, diffW, diffH; if (document.documentElement && document.body.clientHeight==0) { // Catches IE6 and FF in DOCMODE fixedW = document.documentElement.clientWidth; fixedH = document.documentElement.clientHeight; window.resizeTo(fixedW, fixedH); diffW = fixedW - document.documentElement.clientWidth; diffH = fixedH - document.documentElement.clientHeight; w = fixedW + diffW + 16; // Vert Scrollbar Always On in DOCMODE. h = fixedH + diffH; if (w >= screen.availWidth) h += 16; } else if (document.all) { fixedW = document.body.clientWidth; fixedH = document.body.clientHeight; window.resizeTo(fixedW, fixedH); diffW = fixedW - document.body.clientWidth; diffH = fixedH - document.body.clientHeight; w = fixedW + diffW; h = fixedH + diffH; if (h >= screen.availHeight) w += 16; if (w >= screen.availWidth) h += 16; } else { fixedW = window.innerWidth; fixedH = window.innerHeight; window.resizeTo(fixedW, fixedH); diffW = fixedW - window.innerWidth; diffH = fixedH - window.innerHeight; w = fixedW + diffW; h = fixedH + diffH; if (w >= screen.availWidth) h += 16; if (h >= screen.availHeight) w += 16; } w = Math.min(w,screen.availWidth); h = Math.min(h,screen.availHeight); window.resizeTo(w,h); window.moveTo((screen.availWidth-w)/2, (screen.availHeight-h)/2); }