﻿// JScript File
/* <![CDATA[ */
function AdjustColumnsHeight()
{
if (window.document.getElementById('contentBox') != "")
{
var contentBox = window.document.getElementById('contentBox');
} else {
var contentBox = 0;
}
var contentLeft = window.document.getElementById('contentLeft');
var contentRight = window.document.getElementById('contentRight');
var hContentBox = contentBox.offsetHeight;
var hContentLeft = contentLeft.offsetHeight;
var hContentRight = contentRight.offsetHeight;
var maxHeight = Math.max(hContentLeft, hContentRight+8);
var maxHeight = maxHeight+hContentBox;
window.document.getElementById('content').style.height = maxHeight + 8 + 'px';
window.document.getElementById('footer').style.top = maxHeight + 32 + 'px';
}
window.onload = function() { AdjustColumnsHeight(); }
/* ]]> */

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=424,height=312,left = 370,top = 272');");
}
