

// fix 100% height divs (used for content columns left and right)
function equalColumns(){
	  var l = document.getElementById('content-left-container');
	  var r = document.getElementById('content-right-container');
		
		if (r != null) {
		  r.offsetHeight >= l.offsetHeight ? l.style.height = r.offsetHeight + "px" : r.style.height = l.offsetHeight + "px";
		}
	}
	window.onload = function(){
	equalColumns();
}


// standard popup html page code
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}



// standard popup image code
function PopupPic(sPicURL) { 
     window.open( "popup.html?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200"); 
}

