function Popup(strURL, strName, intWidth, intHeight, strStatus, strScroll, strResize, strToolbar) {
	if (!strURL) {
		alert('A link must be specified when using the Popup function.');
	}
	else
		{
		if (!strName) strName = 'popup';
		if (!intWidth) intWidth = 600;
		if (!intHeight) intHeight = 400;
		if (!strStatus) strStatus = 'yes';
		if (!strScroll) strScroll = 'yes';
		if (!strResize) strResize = 'yes';
		if (!strToolbar) strToolbar = 'no';
		if (typeof(objWindow) != "undefined" && objWindow != null && !objWindow.closed) objWindow.close();
		objWindow = window.open(strURL, strName, 'width=' + intWidth + ',height=' + intHeight + ',status=' + strStatus + ',scrollbars=' + strScroll + ',resizable=' + strResize + ',toolbar=' + strToolbar);
		objWindow.focus();
	}
}
// JavaScript Document
var t;

function fixheight() {
 var maxH = 0;
 var ids = ["leftsection","rightcontent"];
 // find the highest column
 for (var i=0; i<ids.length; i++) {
  var d = document.getElementById(ids[i]);
  d.style.height = ""; // important, set it to empty (mozilla, ie)
  if (d.offsetHeight > maxH) maxH = d.offsetHeight;
 }
 // set them all to be that height
 for (var i=0; i<ids.length; i++) {
  var d=document.getElementById(ids[i]);
  d.style.height = maxH+"px";
 }
}