/**
 * Match Columns
 */
matchColumns=function(){ 
     var divl,divc,divr,divHeight, divf; 
         divl=document.getElementById('pageColumnLeft'); 
	 divc=document.getElementById('pageContent');
	 divr=document.getElementById('pageColumnRight');
	 if(divr.offsetHeight){
		divlh = divl.offsetHeight;
		divrh = divr.offsetHeight;
		if (divrh >= divlh) {
        	divHeight=divrh;
			}
		else {
			divHeight=divlh;
			}		 	
        } 
     else if(divr.style.pixelHeight){
		divlh = divl.style.pixelHeight;
		divrh = divr.style.pixelHeight;
		if (divrh >= divlh) {
        	divHeight=divrh;
			}
		else {
			divHeight=divlh;
			}
        } 
	divl.style.height = divHeight + "px";
	divr.style.height = divHeight + "px";

	if (navigator.appName != "Microsoft Internet Explorer") {
		divc.style.height = divHeight + "px";
	}
	else {
		divc.style.height = divHeight + "px";
	}
} 

// Runs the script when page loads 

window.onload=function(){ 
     if(document.getElementsByTagName){
//alert('calling match'); 
          matchColumns();			 
     } 
}
