Advertisement
Advertisement
| 06.09.2008 at 09:16AM PDT, ID: 23469586 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
function resizeContent()
{
var NS = document.all;
try
{
document.getElementById("divContent").style.height=(!NS)?window.innerHeight - 85:document.body.clientHeight - 85;
//document.getElementById("tdContent").style.height=(!NS)?window.innerHeight - 101:document.body.clientHeight - 101;
}
catch(err){alert(err);}
}
|