<script language='javascript'>
<!--
function SetPopUpSize()
{
window.innerWidth=document.getElementById('popuptable').offsetWidth + document.getElementById('popuptable').offsetLeft;
window.innerHeight=document.getElementById('popuptable').offsetHeight + document.getElementById('popuptable').offsetTop;
}
//-->
</script>
Resizes Window to contain all table (id=popuptable)
Is working with FireBird and not working with Konqueror (i can get window.innerHeight but can't set it)

