/* index.js */
function init()
{
resize();
}
function nav(loc)
{
var page = loc + '.php';
	window.location = page;
}
function resize()
{
	var Mid = document.getElementById('p2').offsetHeight;
	var Right = document.getElementById('p3').offsetHeight;
	var NewHeight = 0;
if(Mid > Right || Mid == Right){
NewHeight = Mid;
document.getElementById('p3').style.height = NewHeight + 'px';
}else{
NewHeight = Right;
document.getElementById('p2').style.height = NewHeight + 'px';
}
NewHeight = NewHeight + 375 - 220;
document.getElementById('bottom-container').style.top = NewHeight + 'px';
}

