function LRheight11(div1,div2){
	var l=$(div1).scrollHeight;
	var m=$("div2").scrollHeight;
	layoutHeight=Math.max(l,m);
	$("div1").style.height=layoutHeight+"px";
	$("div2").style.height=layoutHeight+"px";
}

function getHTML(obj,theurl,thepars){
	$(obj).innerHTML ="装载中...";
//alert('loding');
	var myAjax = new Ajax.Updater(obj,	theurl,	{method: 'get',	parameters: thepars,evalScripts: true}
	);
}
