﻿// JScript File
/* <![CDATA[ */
function AdjustColumnsHeight()
{
if (window.document.getElementById('contentBox') != null)
{
var contentBox = window.document.getElementById('contentBox');
var hContentBox = contentBox.offsetHeight;
} else {
var hContentBox = 0;
}

if(window.document.getElementById('contentLeft') != null)
{
var contentLeft = window.document.getElementById('contentLeft');
var contentRight = window.document.getElementById('contentRight');
var hContentLeft = contentLeft.offsetHeight;
var hContentRight = contentRight.offsetHeight;
var maxHeight = Math.max(hContentLeft, hContentRight+8);
maxHeight = maxHeight+hContentBox;
window.document.getElementById('content').style.height = maxHeight + 'px';
contentRight.style.height = maxHeight + 'px';
} else {
maxHeight = hContentBox;
}
window.document.getElementById('footer').style.top = maxHeight + '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');");
}

function popUpMovie(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=780,height=580,left = 170,top = 72');");
}