jslt.MathExtensions={
		randomInRange:function(min,max,round)
		{
		 	var res=min+(max-min)*Math.abs(Math.random());
		 	if(round){
		 		res=Math.round(res)
		 	}
			return res;
		}
		
}

