function resizeM_281_211(el)
{

 if(el.runtimeStyle)
 {
	el.runtimeStyle.behavior="none";
 }

 var tempM = new Image();
 tempM.src = el.src ;
 tempM.el = el;
 tempM.onload = resizeMonLoad_281_211;
 tempM.doload = resizeMonLoad_281_211;
 if(el.fileSize && (el.fileSize>0)){; tempM.doload();};
}

function resizeMonLoad_281_211()
{
	 var el = this.el;
	 var maxW = 281;
	 var maxH = 211;
	 el.style.visibility="visible";

	 if(this.width>=this.height && this.width/this.height>=1.33)
	 {
		  if(this.width >= maxW)
		  {; 
			  var r = maxW / this.width;
			  el.style.height = (this.height * r ) + "px";
			  el.style.width = maxW + "px";
		  }
	 }
	 else
	 {
		if(this.height >= maxH)
		{
			var r = maxH / this.height;
			el.style.width = (this.width * r )+ "px";
			el.style.height = maxH + "px";
		}
	 }

	 if(this.width < maxW)
	 {
		el.style.width = this.width + "px";
	 }

	 if(this.height < maxH)
	 {
		el.style.height = this.height + "px";
	 }
}
