﻿// ***************************************************//
//    This script was created by 3B Technology Jsc    //
//           Written for 3BSoft.CMS Module            //
//           Website: http://www.3bjsc.vn             //
//           Tel: (84)4 22033.999                     //
//           Fax: (84)4 38214.717                     //
//           Hotline: (84) 9494.1.9696                //
//****************************************************//
function autoresize(objname,myobject,maxwidth) {
	var obj =myobject;
	if (obj==null) document.getElementById(objname);
	if (obj!=null) {
		var currentwidth = obj.width;
		var currentheight = obj.height;
		if (currentwidth!=maxwidth) {
			obj.width=maxwidth;
			obj.height=maxwidth / currentwidth * currentheight;
		}
	}
}