Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
This Javascript snippet creates a random value between those limits:
var dbl_Value = Math.floor(Math.random()*(max-min+1)+min);