function fixq(one,two) {
		if (document.getElementById(one)) {
			//alert("hai");
				var lh=document.getElementById(one).offsetHeight;
				var rh=document.getElementById(two).offsetHeight;
				var nh = Math.max(lh, rh); 
				rr = parseInt(nh-10);
				document.getElementById(one).style.height=rr+"px";
				document.getElementById(two).style.height=nh+"px";
		}
	}		
	window.onload=function(){
	fixq('dvl','dvr');
	//fnactive();
}
