function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

window.onresize=resizeColumn;

function resizeColumn(){	
	if (window.innerHeight) {
		windowHeight = window.innerHeight;
	}
	else if (document.documentElement && document.documentElement.clientHeight) {
		windowHeight = document.documentElement.clientHeight;
	}
	else if (document.body) {
		windowHeight = document.body.clientHeight;
	}

	mainHeight = document.getElementById("outsidecontainer").offsetHeight;
	HowHigh = mainHeight + "px"; //get the height of the wrap div..
	
	if (windowHeight > mainHeight){
		HowHigh = windowHeight + "px"; 
		document.getElementById("insidecontainer").style.height = HowHigh;
		document.getElementById("footer").style.position = "absolute";
		document.getElementById("footer").style.bottom = "0px";
		document.getElementById("edgeL").style.height = HowHigh;
		document.getElementById("edgeR").style.height = HowHigh;
	}
	document.getElementById("edgeL").style.height = HowHigh; 
	document.getElementById("edgeR").style.height = HowHigh;
	
}


