function configure() {
	stretchSideDivs();
	placeBottomDiv();
	placeBottomShadow();
}

function placeBottomDiv(){
	document.getElementById('bottomDiv').style.top = (document.getElementById('submainDiv').offsetHeight + 12) + "px";
}

function placeBottomShadow() {
	document.getElementById('bottomShadow').style.top = (document.getElementById('submainDiv').offsetHeight + 29) + "px";
}

function stretchSideDivs() {
	var height		= document.getElementById('submainDiv').offsetHeight;

	document.getElementById('leftDiv').style.height		= (height - 25) + 'px';
	document.getElementById('rightDiv').style.height	= (height - 25) + 'px';
}

function newWin(url){
	window.open(url, "_blank", "width=900,height=800")
}