function update_rightcol_height() {
 var h_l=document.getElementById('left-col');
 var h_r=document.getElementById('right-col');
 if((!h_r.style.height)&&(h_r.scrollHeight<h_l.scrollHeight))
  h_r.style.height=(h_l.scrollHeight-1)+'px';
 else if(h_r.scrollHeight<h_l.scrollHeight)
  h_r.style.height=h_l.scrollHeight+'px';
} if(navigator.userAgent.indexOf("Firefox")!=-1) { update_rightcol_height(); }

//if(document.images) {
//for (var i=1; i<=10; i++) {
// var imgid='img'+i;
// if(document.images[imgid].src != "null") {
//  var img=document.images[imgid]; var w=img.width; var h=img.height;
//	if(w>350) {
//	 sr=Math.round(((w-350)/w)*100);
//	 img.width=(w-Math.round(w*sr/100));
//	 img.height=(h-Math.round(h*sr/100));
//	}
// }
//}
//}
