function goto(url) {
	document.location.href = url;
}

jQuery(document).ready(function(){ 
						   
	//Array of Changing Elements
	var changedivs = new Array("rexp_cnt", "lexp_cnt");	
	
	//Array of Default Heights
	var Hdefault = new Array();
	
	//Assign Defaults
	for (i = 0; i < changedivs.length; i++) {
		Hdefault[i] = sds_getDivHeight(changedivs[i]);
	}
						   
	function sds_getDivHeight(divid) {
		return document.getElementById(divid).clientHeight;
	}
	
	function sds_resize() {
		
		if (sds_getDivHeight(changedivs[0]) > sds_getDivHeight(changedivs[1])) {
		
			//new Height
			var nH = sds_getDivHeight(changedivs[0])+3;
			
			jQuery('#'+changedivs[1]).css({
				"height" : nH+"px"
			});
			
		} else {
			
			//new Height
			var nH = sds_getDivHeight(changedivs[1])-11;				
			
			jQuery('#'+changedivs[0]).css({
				"height" : nH+"px"
			});
			
		}
		
	}
	
	sds_resize();
					   
});  
