var $=function(node){
	return document.getElementById(node);
}
function autoResize(ID){
	var v = $(ID);
	try{
		var bHeight = v.contentWindow.document.body.scrollHeight;
		var dHeight = v.contentWindow.document.documentElement.scrollHeight;
		var height  = Math.max(bHeight,dHeight);
		v.style.height = height;
	}catch(e){}
	try{
		document.all[ID].style.height=height; //ID.document.body.scrollHeight+100;
	}catch(e){}
}
