Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X
This Javascript snippet creates a random value between those limits:
var dbl_Value = Math.floor(Math.random()*(max-min+1)+min);